robust-rs 0.1.0

Robust statistics for Rust: M/S/MM regression and robust scale, built on the M-estimator abstraction.
Documentation
1
2
3
4
5
6
7
8
9
//! Robust estimators of univariate location.

mod hodges_lehmann;
mod m_location;
mod trimmed;

pub use self::hodges_lehmann::{hodges_lehmann, HodgesLehmannFit};
pub use self::m_location::{m_location, LocationFit};
pub use self::trimmed::{trimmed_mean, winsorized_mean};