[][src]Trait ordist::corrcoef::OrDistCorrCoef

pub trait OrDistCorrCoef<T: OrDistElement, U: Float> {
    fn spearman_corrcoef(&self, v: &Self) -> Result<U, OrDistError<T>>;
fn kendall_corrcoef(&self, v: &Self) -> Result<U, OrDistError<T>>; }

Trait of correlation coefficient

Required methods

fn spearman_corrcoef(&self, v: &Self) -> Result<U, OrDistError<T>>

Spearman's correlation coefficient with v.

fn kendall_corrcoef(&self, v: &Self) -> Result<U, OrDistError<T>>

Kendall's correlation coefficient with v.

Loading content...

Implementations on Foreign Types

impl<T, U> OrDistCorrCoef<T, U> for Vec<T> where
    T: OrDistElement,
    U: Float
[src]

impl<A, S, U> OrDistCorrCoef<A, U> for ArrayBase<S, Ix1> where
    A: OrDistElement,
    S: Data<Elem = A>,
    U: Float
[src]

Loading content...

Implementors

Loading content...