pub struct Summary {
pub sum: f64,
pub min: f64,
pub max: f64,
pub mean: f64,
pub median: f64,
pub var: f64,
pub std_dev: f64,
pub std_dev_pct: f64,
pub median_abs_dev: f64,
pub median_abs_dev_pct: f64,
pub quartiles: (f64, f64, f64),
pub iqr: f64,
}
🔬 This is a nightly-only experimental API. (
test
)Expand description
Extracted collection of all the summary statistics of a sample set.
Fields
sum: f64
🔬 This is a nightly-only experimental API. (
test
)min: f64
🔬 This is a nightly-only experimental API. (
test
)max: f64
🔬 This is a nightly-only experimental API. (
test
)mean: f64
🔬 This is a nightly-only experimental API. (
test
)median: f64
🔬 This is a nightly-only experimental API. (
test
)var: f64
🔬 This is a nightly-only experimental API. (
test
)std_dev: f64
🔬 This is a nightly-only experimental API. (
test
)std_dev_pct: f64
🔬 This is a nightly-only experimental API. (
test
)median_abs_dev: f64
🔬 This is a nightly-only experimental API. (
test
)median_abs_dev_pct: f64
🔬 This is a nightly-only experimental API. (
test
)quartiles: (f64, f64, f64)
🔬 This is a nightly-only experimental API. (
test
)iqr: f64
🔬 This is a nightly-only experimental API. (
test
)Implementations
Trait Implementations
impl Copy for Summary
impl StructuralPartialEq for Summary
Auto Trait Implementations
impl RefUnwindSafe for Summary
impl Send for Summary
impl Sync for Summary
impl Unpin for Summary
impl UnwindSafe for Summary
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcepub fn borrow_mut(&mut self) -> &mut T
pub fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcepub fn to_owned(&self) -> T
pub fn to_owned(&self) -> T
Creates owned data from borrowed data, usually by cloning. Read more
sourcepub fn clone_into(&self, target: &mut T)
pub fn clone_into(&self, target: &mut T)
🔬 This is a nightly-only experimental API. (
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more