Trait probability::distribution::Skewness [] [src]

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

A distribution capable of computing the skewness.

Required Methods

fn skewness(&self) -> f64

Compute the skewness.

Implementors