numeric-statistics 0.3.0

Numeric Statistics: functions for min, max, average, variance, standard deviation, and more to come.
Documentation
1
2
3
4
5
6
7
pub struct All<T> {
    pub min: T,
    pub max: T,
    pub average: T,
    pub variance: T,
    pub standard_deviation: T,
}