[][src]Trait peroxide::statistics::stat::OrderedStat

pub trait OrderedStat {
    type Array;
    type Value;
    pub fn median(&self) -> Self::Value;
pub fn quantile(&self, q: f64, qtype: QType) -> Self::Value;
pub fn quantiles(&self, q: Vec<f64>, qtype: QType) -> Self::Array; }

Trait for Ordered Statistics

  • median
  • quantile

Associated Types

Loading content...

Required methods

pub fn median(&self) -> Self::Value[src]

pub fn quantile(&self, q: f64, qtype: QType) -> Self::Value[src]

pub fn quantiles(&self, q: Vec<f64>, qtype: QType) -> Self::Array[src]

Loading content...

Implementations on Foreign Types

impl OrderedStat for Vec<f64>[src]

type Array = Self

type Value = f64

Loading content...

Implementors

Loading content...