pub trait Statistics {
    type Array;
    type Value;

    fn mean(&self) -> Self::Value;
    fn var(&self) -> Self::Value;
    fn sd(&self) -> Self::Value;
    fn cov(&self) -> Self::Array;
    fn cor(&self) -> Self::Array;
}
Expand description

Statistics Trait

It contains mean, var, sd, cov

Required Associated Types§

Required Methods§

Implementors§