pub struct Kurtosis { /* private fields */ }Available on crate features
std or libm only.Expand description
Estimate the arithmetic mean, the variance, the skewness and the kurtosis of a sequence of numbers (“population”).
This can be used to estimate the standard error of the mean.
Implementations§
source§impl Kurtosis
impl Kurtosis
sourcepub fn sample_variance(&self) -> f64
pub fn sample_variance(&self) -> f64
Calculate the sample variance.
This is an unbiased estimator of the variance of the population.
sourcepub fn population_variance(&self) -> f64
pub fn population_variance(&self) -> f64
Calculate the population variance of the sample.
This is a biased estimator of the variance of the population.
sourcepub fn error_mean(&self) -> f64
pub fn error_mean(&self) -> f64
Estimate the standard error of the mean of the population.
Trait Implementations§
source§impl<'de> Deserialize<'de> for Kurtosis
impl<'de> Deserialize<'de> for Kurtosis
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
source§impl<'a> Extend<&'a f64> for Kurtosis
impl<'a> Extend<&'a f64> for Kurtosis
source§fn extend<T>(&mut self, iter: T)where
T: IntoIterator<Item = &'a f64>,
fn extend<T>(&mut self, iter: T)where T: IntoIterator<Item = &'a f64>,
Extends a collection with the contents of an iterator. Read more
source§fn extend_one(&mut self, item: A)
fn extend_one(&mut self, item: A)
🔬This is a nightly-only experimental API. (
extend_one)Extends a collection with exactly one element.
source§fn extend_reserve(&mut self, additional: usize)
fn extend_reserve(&mut self, additional: usize)
🔬This is a nightly-only experimental API. (
extend_one)Reserves capacity in a collection for the given number of additional elements. Read more
source§impl Extend<f64> for Kurtosis
impl Extend<f64> for Kurtosis
source§fn extend<T>(&mut self, iter: T)where
T: IntoIterator<Item = f64>,
fn extend<T>(&mut self, iter: T)where T: IntoIterator<Item = f64>,
Extends a collection with the contents of an iterator. Read more
source§fn extend_one(&mut self, item: A)
fn extend_one(&mut self, item: A)
🔬This is a nightly-only experimental API. (
extend_one)Extends a collection with exactly one element.
source§fn extend_reserve(&mut self, additional: usize)
fn extend_reserve(&mut self, additional: usize)
🔬This is a nightly-only experimental API. (
extend_one)Reserves capacity in a collection for the given number of additional elements. Read more
source§impl<'a> FromIterator<&'a f64> for Kurtosis
impl<'a> FromIterator<&'a f64> for Kurtosis
source§impl FromIterator<f64> for Kurtosis
impl FromIterator<f64> for Kurtosis
source§impl<'a> FromParallelIterator<&'a f64> for Kurtosis
Available on crate feature rayon only.
impl<'a> FromParallelIterator<&'a f64> for Kurtosis
Available on crate feature
rayon only.source§fn from_par_iter<I>(par_iter: I) -> Kurtosiswhere
I: IntoParallelIterator<Item = &'a f64>,
Self: Merge,
fn from_par_iter<I>(par_iter: I) -> Kurtosiswhere I: IntoParallelIterator<Item = &'a f64>, Self: Merge,
Creates an instance of the collection from the parallel iterator
par_iter. Read moresource§impl FromParallelIterator<f64> for Kurtosis
Available on crate feature rayon only.
impl FromParallelIterator<f64> for Kurtosis
Available on crate feature
rayon only.source§fn from_par_iter<I>(par_iter: I) -> Kurtosiswhere
I: IntoParallelIterator<Item = f64>,
Self: Merge,
fn from_par_iter<I>(par_iter: I) -> Kurtosiswhere I: IntoParallelIterator<Item = f64>, Self: Merge,
Creates an instance of the collection from the parallel iterator
par_iter. Read moreAuto Trait Implementations§
impl RefUnwindSafe for Kurtosis
impl Send for Kurtosis
impl Sync for Kurtosis
impl Unpin for Kurtosis
impl UnwindSafe for Kurtosis
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<S, T> CastApprox<T> for Swhere
T: ConvApprox<S>,
impl<S, T> CastApprox<T> for Swhere T: ConvApprox<S>,
source§fn try_cast_approx(self) -> Result<T, Error>
fn try_cast_approx(self) -> Result<T, Error>
source§fn cast_approx(self) -> T
fn cast_approx(self) -> T
source§impl<S, T> CastFloat<T> for Swhere
T: ConvFloat<S>,
impl<S, T> CastFloat<T> for Swhere T: ConvFloat<S>,
source§fn cast_trunc(self) -> T
fn cast_trunc(self) -> T
Cast to integer, truncating Read more
source§fn cast_nearest(self) -> T
fn cast_nearest(self) -> T
Cast to the nearest integer Read more
source§fn cast_floor(self) -> T
fn cast_floor(self) -> T
Cast the floor to an integer Read more