pub struct FeatureStatistics {Show 21 fields
pub name: String,
pub count: usize,
pub mean: f64,
pub median: f64,
pub std_dev: f64,
pub variance: f64,
pub min: f64,
pub max: f64,
pub range: f64,
pub skewness: f64,
pub kurtosis: f64,
pub q1: f64,
pub q3: f64,
pub iqr: f64,
pub outlier_count: usize,
pub outlier_ratio: f64,
pub missing_count: usize,
pub missing_ratio: f64,
pub unique_count: usize,
pub mode: Option<f64>,
pub percentiles: HashMap<u8, f64>,
}Expand description
Comprehensive statistical summary for a dataset feature
Fields§
§name: String§count: usize§mean: f64§median: f64§std_dev: f64§variance: f64§min: f64§max: f64§range: f64§skewness: f64§kurtosis: f64§q1: f64§q3: f64§iqr: f64§outlier_count: usize§outlier_ratio: f64§missing_count: usize§missing_ratio: f64§unique_count: usize§mode: Option<f64>§percentiles: HashMap<u8, f64>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 (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 FeatureStatistics
impl Debug for FeatureStatistics
Source§impl<'de> Deserialize<'de> for FeatureStatistics
impl<'de> Deserialize<'de> for FeatureStatistics
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 FeatureStatistics
impl RefUnwindSafe for FeatureStatistics
impl Send for FeatureStatistics
impl Sync for FeatureStatistics
impl Unpin for FeatureStatistics
impl UnsafeUnpin 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
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> DeserializeOwned for Twhere
T: for<'de> Deserialize<'de>,
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