pub struct ExponentialCoefficients {
pub k: f64,
pub b: f64,
pub predictor_additive: f64,
pub outcome_additive: f64,
}
Available on crate feature
regression
only.Expand description
The coefficients of a exponential function (kb^x
).