Expand description
A simple statistics library
Heavily inspired by the python standard library statistics module.
Re-exports§
pub use univariate::mode;
Modules§
Enums§
Functions§
- mean
- The mean is the sum of a collection of numbers divided by the number of numbers in the collection. (reference)[http://en.wikipedia.org/wiki/Arithmetic_mean]
- median
- The median is the number separating the higher half of a data sample, a population, or a probability distribution, from the lower half (reference)[http://en.wikipedia.org/wiki/Median)
- population_
standard_ deviation - Population standard deviation is a measure that is used to quantify the amount of variation or dispersion of a set of data values. (reference)[http://en.wikipedia.org/wiki/Standard_deviation]
- population_
variance - (Population variance)[http://en.wikipedia.org/wiki/Variance#Population_variance]
- standard_
deviation - Standard deviation is a measure that is used to quantify the amount of variation or dispersion of a set of data values. (reference)[http://en.wikipedia.org/wiki/Standard_deviation]
- standard_
scores - Standard score is a given datum’s (signed) number of standard deviations above the mean. (reference)[http://en.wikipedia.org/wiki/Standard_score] Method returns a vector of scores for a vector of inputs. scores[n] is the score of v[n]
- variance
- (Sample variance)[http://en.wikipedia.org/wiki/Variance#Sample_variance]