std_dev::regression::theil_sen

Struct PolynomialTheilSen

source
pub struct PolynomialTheilSen;
Available on crate feature regression only.
Expand description

Polynomial estimation using the Theil-Sen estimatior. Very slow and should probably not be used. O(n^degree)

Trait Implementations§

source§

impl PolynomialEstimator for PolynomialTheilSen

source§

fn model_polynomial( &self, predictors: &[f64], outcomes: &[f64], degree: usize, ) ->