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§
Source§impl PartialEq for Summary
impl PartialEq for Summary
impl Copy for Summary
impl StructuralPartialEq for Summary
Auto Trait Implementations§
impl Freeze for Summary
impl RefUnwindSafe for Summary
impl Send for Summary
impl Sync for Summary
impl Unpin for Summary
impl UnwindSafe for Summary
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
🔬This is a nightly-only experimental API. (
test
)Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)Source§impl<T> ToOwned for Twhere
T: Clone,
impl<T> ToOwned for Twhere
T: Clone,
Source§type Owned = T
type Owned = T
🔬This is a nightly-only experimental API. (
test
)The resulting type after obtaining ownership.
Source§fn to_owned(&self) -> T
fn to_owned(&self) -> T
🔬This is a nightly-only experimental API. (
test
)Creates owned data from borrowed data, usually by cloning. Read more
Source§fn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
🔬This is a nightly-only experimental API. (
test
)Uses borrowed data to replace owned data, usually by cloning. Read more