Struct average::Skewness [] [src]

pub struct Skewness { /* fields omitted */ }

Estimate the arithmetic mean, the variance and the skewness of a sequence of numbers ("population").

This can be used to estimate the standard error of the mean.

Methods

impl Skewness
[src]

[src]

Create a new skewness estimator.

[src]

Determine whether the sample is empty.

[src]

Estimate the mean of the population.

Returns 0 for an empty sample.

[src]

Return the sample size.

[src]

Calculate the sample variance.

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

[src]

Calculate the population variance of the sample.

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

[src]

Estimate the standard error of the mean of the population.

[src]

Estimate the skewness of the population.

Trait Implementations

impl Debug for Skewness
[src]

[src]

Formats the value using the given formatter.

impl Clone for Skewness
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Default for Skewness
[src]

[src]

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

impl Estimate for Skewness
[src]

[src]

Add an observation sampled from the population.

[src]

Estimate the statistic of the population.

impl Merge for Skewness
[src]

[src]

impl FromIterator<f64> for Skewness
[src]

[src]

Creates a value from an iterator. Read more