pub trait Statistics {
    type Array;
    type Value;

    // Required methods
    fn mean(&self) -> Self::Value;
    fn var(&self) -> Self::Value;
    fn sd(&self) -> Self::Value;
    fn cov(&self) -> Self::Array;
    fn cor(&self) -> Self::Array;
}
Expand description

Statistics Trait

It contains mean, var, sd, cov

Required Associated Types§

Required Methods§

source

fn mean(&self) -> Self::Value

source

fn var(&self) -> Self::Value

source

fn sd(&self) -> Self::Value

source

fn cov(&self) -> Self::Array

source

fn cor(&self) -> Self::Array

Implementations on Foreign Types§

source§

impl Statistics for Vec<f64>

source§

fn mean(&self) -> f64

Mean

Examples
#[macro_use]
extern crate peroxide;
use peroxide::fuga::*;

fn main() {
    let a = c!(1,2,3,4,5);
    assert_eq!(a.mean(), 3.0);
}
source§

fn var(&self) -> f64

Variance

Examples
#[macro_use]
extern crate peroxide;
use peroxide::fuga::*;

fn main() {
    let a = c!(1,2,3,4,5);
    assert_eq!(a.var(), 2.5);
}
source§

fn sd(&self) -> f64

Standard Deviation

Examples
#[macro_use]
extern crate peroxide;
use peroxide::fuga::*;

fn main() {
    let a = c!(1,2,3);
    assert!(nearly_eq(a.sd(), 1f64)); // Floating Number Error
}
§

type Array = Vec<f64>

§

type Value = f64

source§

fn cov(&self) -> Vec<f64>

source§

fn cor(&self) -> Vec<f64>

Implementors§