pub enum Detrend {
None,
Midpoint,
Span,
Mean,
Linear,
}Expand description
Detrend method
Variants§
None
No detrending
Midpoint
Subtract the midpoint of each segment
Span
Remove linear interpolation between first and last item for each segment
Mean
Remove the mean of the segment
Linear
Remove the linear regression of each segment
Implementations§
Trait Implementations§
Source§impl Ord for Detrend
impl Ord for Detrend
Source§impl PartialOrd for Detrend
impl PartialOrd for Detrend
impl Copy for Detrend
impl Eq for Detrend
impl StructuralPartialEq for Detrend
Auto Trait Implementations§
impl Freeze for Detrend
impl RefUnwindSafe for Detrend
impl Send for Detrend
impl Sync for Detrend
impl Unpin for Detrend
impl UnwindSafe for Detrend
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