Trait statest::ks::KSVec[][src]

pub trait KSVec<T: Float> {
    fn ks1<S: Univariate<f64, f64>>(&self, dist: &S, p: T) -> bool;
}

Trait for Kolmogorov–Smirnov test.

Required methods

fn ks1<S: Univariate<f64, f64>>(&self, dist: &S, p: T) -> bool[src]

Kolmogorov–Smirnov test. If p <= prob, then returns true.

Loading content...

Implementations on Foreign Types

impl KSVec<f64> for Vec<f64>[src]

impl KSVec<f32> for Vec<f32>[src]

impl<U: Data<Elem = f64>> KSVec<f64> for ArrayBase<U, Ix1>[src]

impl<U: Data<Elem = f32>> KSVec<f32> for ArrayBase<U, Ix1>[src]

Loading content...

Implementors

Loading content...