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
10
11
12
13
14
//! Robust linear regression.

mod lts;
mod m_estimator;
mod mm_estimator;
mod s_estimator;
mod subsample; // shared FAST-{S,LTS} elemental-resampling scaffold
mod theil_sen;

pub use self::lts::{Lts, LtsFit};
pub use self::m_estimator::MEstimator;
pub use self::mm_estimator::MMEstimator;
pub use self::s_estimator::SEstimator;
pub use self::theil_sen::{theil_sen, TheilSenFit};