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

Required Associated Types

Required Methods

Implementations on Foreign Types

Implementors