Struct std_dev::regression::LinearCoefficients

source ·
pub struct LinearCoefficients {
    pub k: f64,
    pub m: f64,
}
Available on crate feature regression only.
Expand description

The coefficients of a line.

Fields§

§k: f64

slope, x coefficient

§m: f64

y intersect, additive

Trait Implementations§