pub struct LinearRegressionParameters {
pub solver: LinearRegressionSolverName,
}Expand description
Linear Regression parameters
Fields§
§solver: LinearRegressionSolverNameSolver to use for estimation of regression coefficients.
Implementations§
Source§impl LinearRegressionParameters
impl LinearRegressionParameters
Sourcepub fn with_solver(self, solver: LinearRegressionSolverName) -> Self
pub fn with_solver(self, solver: LinearRegressionSolverName) -> Self
Solver to use for estimation of regression coefficients.
Trait Implementations§
Source§impl Clone for LinearRegressionParameters
impl Clone for LinearRegressionParameters
Source§fn clone(&self) -> LinearRegressionParameters
fn clone(&self) -> LinearRegressionParameters
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for LinearRegressionParameters
impl Debug for LinearRegressionParameters
Source§impl Default for LinearRegressionParameters
impl Default for LinearRegressionParameters
Source§impl<TX: Number + RealNumber, TY: Number, X: Array2<TX> + QRDecomposable<TX> + SVDDecomposable<TX>, Y: Array1<TY>> SupervisedEstimator<X, Y, LinearRegressionParameters> for LinearRegression<TX, TY, X, Y>
impl<TX: Number + RealNumber, TY: Number, X: Array2<TX> + QRDecomposable<TX> + SVDDecomposable<TX>, Y: Array1<TY>> SupervisedEstimator<X, Y, LinearRegressionParameters> for LinearRegression<TX, TY, X, Y>
Auto Trait Implementations§
impl Freeze for LinearRegressionParameters
impl RefUnwindSafe for LinearRegressionParameters
impl Send for LinearRegressionParameters
impl Sync for LinearRegressionParameters
impl Unpin for LinearRegressionParameters
impl UnsafeUnpin for LinearRegressionParameters
impl UnwindSafe for LinearRegressionParameters
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more