pub struct FeatureStatistics {
pub mean: Array1<f64>,
pub variance: Array1<f64>,
pub min: Array1<f64>,
pub max: Array1<f64>,
pub update_count: usize,
pub approximation_error: f64,
pub drift_score: f64,
}Expand description
Statistics for monitoring feature quality
Fields§
§mean: Array1<f64>mean
variance: Array1<f64>variance
min: Array1<f64>min
max: Array1<f64>max
update_count: usizeupdate_count
approximation_error: f64approximation_error
drift_score: f64drift_score
Implementations§
Trait Implementations§
Source§impl Clone for FeatureStatistics
impl Clone for FeatureStatistics
Source§fn clone(&self) -> FeatureStatistics
fn clone(&self) -> FeatureStatistics
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for FeatureStatistics
impl RefUnwindSafe for FeatureStatistics
impl Send for FeatureStatistics
impl Sync for FeatureStatistics
impl Unpin for FeatureStatistics
impl UnwindSafe for FeatureStatistics
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