pub struct TargetStatistics {
pub name: String,
pub data_type: String,
pub count: usize,
pub unique_count: usize,
pub missing_count: usize,
pub missing_ratio: f64,
pub class_distribution: HashMap<String, usize>,
pub class_balance_ratio: f64,
pub entropy: f64,
pub continuous_stats: Option<FeatureStatistics>,
}Expand description
Summary statistics for target/label data
Fields§
§name: String§data_type: String§count: usize§unique_count: usize§missing_count: usize§missing_ratio: f64§class_distribution: HashMap<String, usize>§class_balance_ratio: f64§entropy: f64§continuous_stats: Option<FeatureStatistics>Trait Implementations§
Source§impl Clone for TargetStatistics
impl Clone for TargetStatistics
Source§fn clone(&self) -> TargetStatistics
fn clone(&self) -> TargetStatistics
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 TargetStatistics
impl Debug for TargetStatistics
Source§impl<'de> Deserialize<'de> for TargetStatistics
impl<'de> Deserialize<'de> for TargetStatistics
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 TargetStatistics
impl RefUnwindSafe for TargetStatistics
impl Send for TargetStatistics
impl Sync for TargetStatistics
impl Unpin for TargetStatistics
impl UnsafeUnpin for TargetStatistics
impl UnwindSafe for TargetStatistics
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