sample.go 853 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. package stats
  2. import "math/rand"
  3. // Sample returns sample from input with replacement or without
  4. func Sample(input Float64Data, takenum int, replacement bool) ([]float64, error) {
  5. if input.Len() == 0 {
  6. return nil, EmptyInput
  7. }
  8. length := input.Len()
  9. if replacement {
  10. result := Float64Data{}
  11. rand.Seed(unixnano())
  12. // In every step, randomly take the num for
  13. for i := 0; i < takenum; i++ {
  14. idx := rand.Intn(length)
  15. result = append(result, input[idx])
  16. }
  17. return result, nil
  18. } else if !replacement && takenum <= length {
  19. rand.Seed(unixnano())
  20. // Get permutation of number of indexies
  21. perm := rand.Perm(length)
  22. result := Float64Data{}
  23. // Get element of input by permutated index
  24. for _, idx := range perm[0:takenum] {
  25. result = append(result, input[idx])
  26. }
  27. return result, nil
  28. }
  29. return nil, BoundsErr
  30. }