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

A distribution capable of computing the excess kurtosis.

Required Methods

Compute the excess kurtosis.

Implementors