Trait probability::distribution::Kurtosis [] [src]

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

A distribution capable of computing the excess kurtosis.

Required Methods

fn kurtosis(&self) -> f64

Compute the excess kurtosis.

Implementors