pub struct OutlierDetector;Expand description
Outlier detection methods
Implementations§
Source§impl OutlierDetector
impl OutlierDetector
Sourcepub fn zscore_outliers<T>(data: &ArrayView1<'_, T>, threshold: T) -> Vec<usize>
pub fn zscore_outliers<T>(data: &ArrayView1<'_, T>, threshold: T) -> Vec<usize>
Detect outliers using Z-score method
Sourcepub fn iqr_outliers<T>(data: &ArrayView1<'_, T>, multiplier: T) -> Vec<usize>
pub fn iqr_outliers<T>(data: &ArrayView1<'_, T>, multiplier: T) -> Vec<usize>
Detect outliers using IQR (Interquartile Range) method
Sourcepub fn modified_zscore_outliers<T>(
data: &ArrayView1<'_, T>,
threshold: T,
) -> Vec<usize>
pub fn modified_zscore_outliers<T>( data: &ArrayView1<'_, T>, threshold: T, ) -> Vec<usize>
Detect outliers using modified Z-score method (using median)
Auto Trait Implementations§
impl Freeze for OutlierDetector
impl RefUnwindSafe for OutlierDetector
impl Send for OutlierDetector
impl Sync for OutlierDetector
impl Unpin for OutlierDetector
impl UnwindSafe for OutlierDetector
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
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more