data.go 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140
  1. package stats
  2. // Float64Data is a named type for []float64 with helper methods
  3. type Float64Data []float64
  4. // Get item in slice
  5. func (f Float64Data) Get(i int) float64 { return f[i] }
  6. // Len returns length of slice
  7. func (f Float64Data) Len() int { return len(f) }
  8. // Less returns if one number is less than another
  9. func (f Float64Data) Less(i, j int) bool { return f[i] < f[j] }
  10. // Swap switches out two numbers in slice
  11. func (f Float64Data) Swap(i, j int) { f[i], f[j] = f[j], f[i] }
  12. // Min returns the minimum number in the data
  13. func (f Float64Data) Min() (float64, error) { return Min(f) }
  14. // Max returns the maximum number in the data
  15. func (f Float64Data) Max() (float64, error) { return Max(f) }
  16. // Sum returns the total of all the numbers in the data
  17. func (f Float64Data) Sum() (float64, error) { return Sum(f) }
  18. // Mean returns the mean of the data
  19. func (f Float64Data) Mean() (float64, error) { return Mean(f) }
  20. // Median returns the median of the data
  21. func (f Float64Data) Median() (float64, error) { return Median(f) }
  22. // Mode returns the mode of the data
  23. func (f Float64Data) Mode() ([]float64, error) { return Mode(f) }
  24. // GeometricMean returns the median of the data
  25. func (f Float64Data) GeometricMean() (float64, error) { return GeometricMean(f) }
  26. // HarmonicMean returns the mode of the data
  27. func (f Float64Data) HarmonicMean() (float64, error) { return HarmonicMean(f) }
  28. // MedianAbsoluteDeviation the median of the absolute deviations from the dataset median
  29. func (f Float64Data) MedianAbsoluteDeviation() (float64, error) {
  30. return MedianAbsoluteDeviation(f)
  31. }
  32. // MedianAbsoluteDeviationPopulation finds the median of the absolute deviations from the population median
  33. func (f Float64Data) MedianAbsoluteDeviationPopulation() (float64, error) {
  34. return MedianAbsoluteDeviationPopulation(f)
  35. }
  36. // StandardDeviation the amount of variation in the dataset
  37. func (f Float64Data) StandardDeviation() (float64, error) {
  38. return StandardDeviation(f)
  39. }
  40. // StandardDeviationPopulation finds the amount of variation from the population
  41. func (f Float64Data) StandardDeviationPopulation() (float64, error) {
  42. return StandardDeviationPopulation(f)
  43. }
  44. // StandardDeviationSample finds the amount of variation from a sample
  45. func (f Float64Data) StandardDeviationSample() (float64, error) {
  46. return StandardDeviationSample(f)
  47. }
  48. // QuartileOutliers finds the mild and extreme outliers
  49. func (f Float64Data) QuartileOutliers() (Outliers, error) {
  50. return QuartileOutliers(f)
  51. }
  52. // Percentile finds the relative standing in a slice of floats
  53. func (f Float64Data) Percentile(p float64) (float64, error) {
  54. return Percentile(f, p)
  55. }
  56. // PercentileNearestRank finds the relative standing using the Nearest Rank method
  57. func (f Float64Data) PercentileNearestRank(p float64) (float64, error) {
  58. return PercentileNearestRank(f, p)
  59. }
  60. // Correlation describes the degree of relationship between two sets of data
  61. func (f Float64Data) Correlation(d Float64Data) (float64, error) {
  62. return Correlation(f, d)
  63. }
  64. // Pearson calculates the Pearson product-moment correlation coefficient between two variables.
  65. func (f Float64Data) Pearson(d Float64Data) (float64, error) {
  66. return Pearson(f, d)
  67. }
  68. // Quartile returns the three quartile points from a slice of data
  69. func (f Float64Data) Quartile(d Float64Data) (Quartiles, error) {
  70. return Quartile(d)
  71. }
  72. // InterQuartileRange finds the range between Q1 and Q3
  73. func (f Float64Data) InterQuartileRange() (float64, error) {
  74. return InterQuartileRange(f)
  75. }
  76. // Midhinge finds the average of the first and third quartiles
  77. func (f Float64Data) Midhinge(d Float64Data) (float64, error) {
  78. return Midhinge(d)
  79. }
  80. // Trimean finds the average of the median and the midhinge
  81. func (f Float64Data) Trimean(d Float64Data) (float64, error) {
  82. return Trimean(d)
  83. }
  84. // Sample returns sample from input with replacement or without
  85. func (f Float64Data) Sample(n int, r bool) ([]float64, error) {
  86. return Sample(f, n, r)
  87. }
  88. // Variance the amount of variation in the dataset
  89. func (f Float64Data) Variance() (float64, error) {
  90. return Variance(f)
  91. }
  92. // PopulationVariance finds the amount of variance within a population
  93. func (f Float64Data) PopulationVariance() (float64, error) {
  94. return PopulationVariance(f)
  95. }
  96. // SampleVariance finds the amount of variance within a sample
  97. func (f Float64Data) SampleVariance() (float64, error) {
  98. return SampleVariance(f)
  99. }
  100. // Covariance is a measure of how much two sets of data change
  101. func (f Float64Data) Covariance(d Float64Data) (float64, error) {
  102. return Covariance(f, d)
  103. }
  104. // CovariancePopulation computes covariance for entire population between two variables.
  105. func (f Float64Data) CovariancePopulation(d Float64Data) (float64, error) {
  106. return CovariancePopulation(f, d)
  107. }