pub struct Log { /* private fields */ }Expand description
The log transform.
Implementations§
Trait Implementations§
Source§impl Transformer for Log
impl Transformer for Log
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 Log
impl RefUnwindSafe for Log
impl Send for Log
impl Sync for Log
impl Unpin for Log
impl UnsafeUnpin for Log
impl UnwindSafe for Log
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