Module statrs::statistics [] [src]

Provides traits for statistical computation

Enums

RankTieBreaker

Enumeration of possible tie-breaking strategies when computing ranks

Traits

Entropy

The Entropy trait specifies an object that has a closed form solution for its entropy

Max

The Max trait specifies that an object has a maximum value

Mean

The Mean trait specifies than an object has a closed form solution for its mean(s)

Median

The Median trait specifies than an object has a closed form solution for its median

Min

The Min trait specifies than an object has a minimum value

Mode

The Mode trait specififies than an object has a closed form solution for its mode(s)

OrderStatistics

The OrderStatistics trait provides statistical utilities having to do with ordering. All the algorithms are in-place thus requiring a mutable borrow.

Skewness

The Skewness trait specifies ab object that has a closed form solution for its skewness(s)

Statistics

The Statistics trait provides a host of statistical utilities for analzying data sets

Variance

The Variance trait specifies that an object has a closed form solution for its variance(s). Requires Mean since a closed form solution to variance by definition requires a closed form mean.