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
sourceimpl StructuralPartialEq for Summary
sourceAuto Trait Implementations
impl RefUnwindSafe for Summary
impl Send for Summary
impl Sync for Summary
impl Unpin for Summary
impl UnwindSafe for Summary
Blanket Implementations
impl<T> BorrowMut<T> for T where
T: ?Sized,
source
impl<T> BorrowMut<T> for T where
T: ?Sized,
sourcefn borrow_mut(&mut self) -> &mut T
const: unstable · source
fn borrow_mut(&mut self) -> &mut T
const: unstable · sourceMutably borrows from an owned value. Read more
impl<T> ToOwned for T where
T: Clone,
source
impl<T> ToOwned for T where
T: Clone,
sourcetype Owned = T
type Owned = T
The resulting type after obtaining ownership.
fn clone_into(&self, target: &mut T)
source
fn clone_into(&self, target: &mut T)
source🔬 This is a nightly-only experimental API. (
toowned_clone_into)Uses borrowed data to replace owned data, usually by cloning. Read more