robust-rs-core 0.1.0

Core abstractions for robust statistics: loss functions, robust scale and influence-function theory.
Documentation
1
2
3
4
5
6
7
8
9
10
//! Iterative solver utilities shared across estimators.
//!
//! The *regression* IRLS driver lives in the `robust-rs` crate (it needs linear
//! algebra). This module holds the scale-free machinery: the [`Control`]
//! convergence controller shared by the location and scale M-estimators (each of
//! which runs its own bespoke fixed-point iteration).

mod control;

pub use self::control::Control;