pub struct NumericStats {Show 13 fields
pub min: f64,
pub max: f64,
pub mean: f64,
pub std_dev: f64,
pub variance: f64,
pub median: Option<f64>,
pub quartiles: Option<Quartiles>,
pub mode: Option<f64>,
pub coefficient_of_variation: Option<f64>,
pub skewness: Option<f64>,
pub kurtosis: Option<f64>,
pub is_approximate: Option<bool>,
pub outlier_count: Option<usize>,
}Expand description
Statistics for numeric (integer or float) columns.
Fields§
§min: f64§max: f64§mean: f64§std_dev: f64§variance: f64§median: Option<f64>§quartiles: Option<Quartiles>§mode: Option<f64>§coefficient_of_variation: Option<f64>§skewness: Option<f64>§kurtosis: Option<f64>§is_approximate: Option<bool>§outlier_count: Option<usize>Number of values flagged as IQR-based outliers in this column.
Uses the same Tukey-style detection (Q1 − k·IQR, Q3 + k·IQR with
k = 1.5 by default) that feeds the global accuracy.outlier_ratio.
None when outlier detection didn’t run (sample below the configured
minimum or non-numeric column).
Implementations§
Source§impl NumericStats
impl NumericStats
Trait Implementations§
Source§impl Clone for NumericStats
impl Clone for NumericStats
Source§fn clone(&self) -> NumericStats
fn clone(&self) -> NumericStats
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for NumericStats
impl Debug for NumericStats
Source§impl<'de> Deserialize<'de> for NumericStats
impl<'de> Deserialize<'de> for NumericStats
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for NumericStats
impl RefUnwindSafe for NumericStats
impl Send for NumericStats
impl Sync for NumericStats
impl Unpin for NumericStats
impl UnsafeUnpin for NumericStats
impl UnwindSafe for NumericStats
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