Trait statest::ttest::TTestVec[][src]

pub trait TTestVec<T: Float> {
    fn ttest1(&self, y: T, p: T, side: Side) -> bool;

    fn ttest1_bonferroni(&self, y: T, p: T, side: Side, n_test: usize) -> bool { ... }
}

Trait for T test.

Required methods

fn ttest1(&self, y: T, p: T, side: Side) -> bool[src]

T test, which returns true if p-value is less than p (Side::One(_)) or p/2 (Side::Two).

Loading content...

Provided methods

fn ttest1_bonferroni(&self, y: T, p: T, side: Side, n_test: usize) -> bool[src]

T test with Bonferroni correction.

Loading content...

Implementations on Foreign Types

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

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

impl<S: Data<Elem = f64>> TTestVec<f64> for ArrayBase<S, Ix1>[src]

impl<S: Data<Elem = f32>> TTestVec<f32> for ArrayBase<S, Ix1>[src]

Loading content...

Implementors

Loading content...