There are 4 utilities.
- mean v1.0
-
Returns the mean of
sample
.sample
must be a sequence of numbers.- Provides
mean
- median v1.0
-
Returns median of
sample
.sample
must be a sequence of real numbers.- Provides
median
- Requires
- copy-sequence
- variance v1.0
-
Variance of
sample
. Returns the biased variance ifbiased
is true (the default), and the unbiased estimator of variance ifbiased
is false.sample
must be a sequence of numbers.- Provides
variance
- Requires
- mean
- standard-deviation v1.0
-
Standard deviation of
sample
. Returns the biased standard deviation ifbiased
is true (the default), and the square root of the unbiased estimator for variance ifbiased
is false (which is not the same as the unbiased estimator for standard deviation).sample
must be a sequence of numbers.- Provides
standard-deviation
- Requires
- variance