Struct linfa_linear::FittedIsotonicRegression
source · pub struct FittedIsotonicRegression<F> { /* private fields */ }Expand description
A fitted isotonic regression model which can be used for making predictions.
Trait Implementations§
source§impl<F: Clone> Clone for FittedIsotonicRegression<F>
impl<F: Clone> Clone for FittedIsotonicRegression<F>
source§fn clone(&self) -> FittedIsotonicRegression<F>
fn clone(&self) -> FittedIsotonicRegression<F>
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresource§impl<F: Debug> Debug for FittedIsotonicRegression<F>
impl<F: Debug> Debug for FittedIsotonicRegression<F>
source§impl<F: PartialEq> PartialEq for FittedIsotonicRegression<F>
impl<F: PartialEq> PartialEq for FittedIsotonicRegression<F>
source§fn eq(&self, other: &FittedIsotonicRegression<F>) -> bool
fn eq(&self, other: &FittedIsotonicRegression<F>) -> bool
This method tests for
self and other values to be equal, and is used
by ==.source§impl<F: Float, D: Data<Elem = F>> PredictInplace<ArrayBase<D, Dim<[usize; 2]>>, ArrayBase<OwnedRepr<F>, Dim<[usize; 1]>>> for FittedIsotonicRegression<F>
impl<F: Float, D: Data<Elem = F>> PredictInplace<ArrayBase<D, Dim<[usize; 2]>>, ArrayBase<OwnedRepr<F>, Dim<[usize; 1]>>> for FittedIsotonicRegression<F>
impl<F> StructuralPartialEq for FittedIsotonicRegression<F>
Auto Trait Implementations§
impl<F> RefUnwindSafe for FittedIsotonicRegression<F>where
F: RefUnwindSafe,
impl<F> Send for FittedIsotonicRegression<F>where
F: Send,
impl<F> Sync for FittedIsotonicRegression<F>where
F: Sync,
impl<F> Unpin for FittedIsotonicRegression<F>
impl<F> UnwindSafe for FittedIsotonicRegression<F>where
F: RefUnwindSafe,
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