Struct average::Mean [] [src]

pub struct Mean { /* fields omitted */ }

Estimate the arithmetic mean of a sequence of numbers ("population").

Example

use average::Mean;

let a: Mean = (1..6).map(Into::into).collect();
println!("The mean is {}.", a.mean());

Methods

impl Mean
[src]

[src]

Create a new mean 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.

Trait Implementations

impl Debug for Mean
[src]

[src]

Formats the value using the given formatter.

impl Clone for Mean
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Default for Mean
[src]

[src]

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

impl Estimate for Mean
[src]

[src]

Add an observation sampled from the population.

[src]

Estimate the statistic of the population.

impl Merge for Mean
[src]

[src]

Merge another sample into this one.

Example

use average::{Mean, Merge};

let sequence: &[f64] = &[1., 2., 3., 4., 5., 6., 7., 8., 9.];
let (left, right) = sequence.split_at(3);
let avg_total: Mean = sequence.iter().map(|x| *x).collect();
let mut avg_left: Mean = left.iter().map(|x| *x).collect();
let avg_right: Mean = right.iter().map(|x| *x).collect();
avg_left.merge(&avg_right);
assert_eq!(avg_total.mean(), avg_left.mean());

impl FromIterator<f64> for Mean
[src]

[src]

Creates a value from an iterator. Read more