Struct average::WeightedMean [] [src]

pub struct WeightedMean { /* fields omitted */ }

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

Example

use average::WeightedMean;

let a: WeightedMean = (1..6).zip(1..6)
    .map(|(x, w)| (f64::from(x), f64::from(w))).collect();
println!("The weighted mean is {}.", a.mean());

Methods

impl WeightedMean
[src]

[src]

Create a new weighted and unweighted mean estimator.

[src]

Add an observation sampled from the population.

[src]

Determine whether the sample is empty.

Might be a false positive if the sum of weights is zero.

[src]

Return the sum of the weights.

Returns 0 for an empty sample.

[src]

Estimate the weighted mean of the population.

Returns 0 for an empty sample.

Trait Implementations

impl Debug for WeightedMean
[src]

[src]

Formats the value using the given formatter.

impl Clone for WeightedMean
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Default for WeightedMean
[src]

[src]

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

impl FromIterator<(f64, f64)> for WeightedMean
[src]

[src]

Creates a value from an iterator. Read more

impl Merge for WeightedMean
[src]

[src]

Merge another sample into this one.

Example

use average::{WeightedMean, Merge};

let weighted_sequence: &[(f64, f64)] = &[
    (1., 0.1), (2., 0.2), (3., 0.3), (4., 0.4), (5., 0.5),
    (6., 0.6), (7., 0.7), (8., 0.8), (9., 0.9)];
let (left, right) = weighted_sequence.split_at(3);
let avg_total: WeightedMean = weighted_sequence.iter().map(|&x| x).collect();
let mut avg_left: WeightedMean = left.iter().map(|&x| x).collect();
let avg_right: WeightedMean = right.iter().map(|&x| x).collect();
avg_left.merge(&avg_right);
assert!((avg_total.mean() - avg_left.mean()).abs() < 1e-15);