Struct average::Kurtosis[][src]

pub struct Kurtosis { /* fields omitted */ }

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.

Methods

impl Kurtosis
[src]

Create a new kurtosis estimator.

Determine whether the sample is empty.

Estimate the mean of the population.

Returns 0 for an empty sample.

Return the sample size.

Calculate the sample variance.

This is an unbiased estimator of the variance of the population.

Calculate the population variance of the sample.

This is a biased estimator of the variance of the population.

Estimate the standard error of the mean of the population.

Estimate the skewness of the population.

Estimate the excess kurtosis of the population.

Trait Implementations

impl Debug for Kurtosis
[src]

Formats the value using the given formatter. Read more

impl Clone for Kurtosis
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Default for Kurtosis
[src]

Returns the "default value" for a type. Read more

impl Estimate for Kurtosis
[src]

Add an observation sampled from the population.

Estimate the statistic of the population.

impl Merge for Kurtosis
[src]

impl FromIterator<f64> for Kurtosis
[src]

Creates a value from an iterator. Read more

impl<'a> FromIterator<&'a f64> for Kurtosis
[src]

Creates a value from an iterator. Read more

Auto Trait Implementations

impl Send for Kurtosis

impl Sync for Kurtosis