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 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
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
)