pub struct Logit { /* private fields */ }Expand description
The logit transform.
Implementations§
Trait Implementations§
Source§impl Transformer for Logit
impl Transformer for Logit
Source§fn fit(&mut self, _data: &[f64]) -> Result<(), Error>
fn fit(&mut self, _data: &[f64]) -> Result<(), Error>
Fit the transformation to the given time series. Read more
Source§fn transform(&self, data: &mut [f64]) -> Result<(), Error>
fn transform(&self, data: &mut [f64]) -> Result<(), Error>
Apply the transformation to the given time series. Read more
Source§fn inverse_transform(&self, data: &mut [f64]) -> Result<(), Error>
fn inverse_transform(&self, data: &mut [f64]) -> Result<(), Error>
Apply the inverse transformation to the given time series. Read more
Auto Trait Implementations§
impl Freeze for Logit
impl RefUnwindSafe for Logit
impl Send for Logit
impl Sync for Logit
impl Unpin for Logit
impl UnsafeUnpin for Logit
impl UnwindSafe for Logit
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