pub struct AugStats {
pub original_mean: f64,
pub original_std: f64,
pub augmented_mean: f64,
pub augmented_std: f64,
pub element_change_ratio: f64,
}Expand description
Statistics comparing original and augmented data.
Fields§
§original_mean: f64Mean of the original array.
original_std: f64Standard deviation of the original array.
augmented_mean: f64Mean of the augmented array.
augmented_std: f64Standard deviation of the augmented array.
element_change_ratio: f64Fraction of elements whose value changed (|orig − aug| > ε).
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for AugStats
impl RefUnwindSafe for AugStats
impl Send for AugStats
impl Sync for AugStats
impl Unpin for AugStats
impl UnsafeUnpin for AugStats
impl UnwindSafe for AugStats
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
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