Available on crate feature
regression
only.Expand description
The models (functions) we can use regression to optimize for.
You can naturally implement these yourself.
Re-exports§
pub use trig::*;
Modules§
- trig
- Traits and coefficients of trigonometric functions.
Structs§
- Exponential
Coefficients - The coefficients of a exponential function (
kb^x
). - Linear
Coefficients - The coefficients of a line.
- Logistic
Coefficients - The coefficients of a logistic function.
- Polynomial
Coefficients - The length of the inner vector is
degree + 1
. - Power
Coefficients - The coefficients of a power (also called growth) function (
kx^e
).
Traits§
- Exponential
Estimator - Implemented by all estimators yielding an exponential regression.
- Linear
Estimator - Implemented by all estimators yielding a linear 2 variable regression (a line).
- Logistic
Estimator - Implemented by all estimators yielding an logistic regression.
- Polynomial
Estimator - Implemented by all estimators yielding a polynomial regression.
- Power
Estimator - Implemented by all estimators yielding a power regression.