Module classif::stats [] [src]

Basic statistical functionnalities: mean, standard deviation, kurtosis, variance, etc.

Functions

kurtosis

Compute the kurtosis value of list of values. The implementation is based on Fischer's definition (normal ==> 0.0) and use unbiased estimators.

mean

Compute the mean of a list of values.

median

Compute the median value, ie. the middle number of a list a value, ie. the value corresponding to the 0.5 quantile.

rootmeansquare

Compute the root mean square of list of values.

standard_deviation

Compute the standard deviation of a list of values.

sum_pow_deviations
variance

Compute the variance of a list of values. The variance is the sum of squared deviations from the mean.