median.go 592 B

12345678910111213141516171819202122232425
  1. package stats
  2. import "math"
  3. // Median gets the median number in a slice of numbers
  4. func Median(input Float64Data) (median float64, err error) {
  5. // Start by sorting a copy of the slice
  6. c := sortedCopy(input)
  7. // No math is needed if there are no numbers
  8. // For even numbers we add the two middle numbers
  9. // and divide by two using the mean function above
  10. // For odd numbers we just use the middle number
  11. l := len(c)
  12. if l == 0 {
  13. return math.NaN(), EmptyInput
  14. } else if l%2 == 0 {
  15. median, _ = Mean(c[l/2-1 : l/2+1])
  16. } else {
  17. median = float64(c[l/2])
  18. }
  19. return median, nil
  20. }