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

Trait for Ordered Statistics

  • median
  • quantile

Associated Types

Required methods

Implementations on Foreign Types

Implementors