pub trait Skewness: Variance {
    fn skewness(&self) -> f64;
}
Expand description

A distribution capable of computing the skewness.

Required Methods§

Compute the skewness.

Implementors§