pub enum LinearRegressionSolverName {
QR,
SVD,
}Expand description
Approach to use for estimation of regression coefficients. QR is more efficient but SVD is more stable.
Variants§
Trait Implementations§
Source§impl Clone for LinearRegressionSolverName
impl Clone for LinearRegressionSolverName
Source§fn clone(&self) -> LinearRegressionSolverName
fn clone(&self) -> LinearRegressionSolverName
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 LinearRegressionSolverName
impl Debug for LinearRegressionSolverName
Source§impl Default for LinearRegressionSolverName
impl Default for LinearRegressionSolverName
Source§fn default() -> LinearRegressionSolverName
fn default() -> LinearRegressionSolverName
Returns the “default value” for a type. Read more
impl Eq for LinearRegressionSolverName
impl StructuralPartialEq for LinearRegressionSolverName
Auto Trait Implementations§
impl Freeze for LinearRegressionSolverName
impl RefUnwindSafe for LinearRegressionSolverName
impl Send for LinearRegressionSolverName
impl Sync for LinearRegressionSolverName
impl Unpin for LinearRegressionSolverName
impl UnsafeUnpin for LinearRegressionSolverName
impl UnwindSafe for LinearRegressionSolverName
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