Crate statistical[−][src]
Expand description
A simple statistics library
Heavily inspired by the python standard library statistics module.
Modules
Enums
Functions
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]
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 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)[http://en.wikipedia.org/wiki/Variance#Population_variance]
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 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]
(Sample variance)[http://en.wikipedia.org/wiki/Variance#Sample_variance]
