2017-05-30 10:54:14 +02:00
|
|
|
#![cfg_attr(feature = "cargo-clippy", allow(float_cmp, map_clone))]
|
|
|
|
|
2017-05-19 15:54:13 +02:00
|
|
|
#[macro_use] extern crate average;
|
|
|
|
|
|
|
|
extern crate rand;
|
|
|
|
extern crate stats;
|
|
|
|
|
|
|
|
/// Create a random vector by sampling from a normal distribution.
|
|
|
|
fn initialize_vec(size: usize) -> Vec<f64> {
|
|
|
|
use rand::distributions::{Normal, IndependentSample};
|
|
|
|
use rand::{XorShiftRng, SeedableRng};
|
|
|
|
let normal = Normal::new(2.0, 3.0);
|
|
|
|
let mut values = Vec::with_capacity(size);
|
|
|
|
let mut rng = XorShiftRng::from_seed([1, 2, 3, 4]);
|
|
|
|
for _ in 0..size {
|
|
|
|
values.push(normal.ind_sample(&mut rng));
|
|
|
|
}
|
|
|
|
values
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn average_vs_streaming_stats_small() {
|
|
|
|
let values = initialize_vec(100);
|
2017-05-28 21:13:47 +02:00
|
|
|
let a: average::MeanWithError = values.iter().map(|x| *x).collect();
|
2017-05-19 15:54:13 +02:00
|
|
|
let b: stats::OnlineStats = values.iter().map(|x| *x).collect();
|
|
|
|
assert_almost_eq!(a.mean(), b.mean(), 1e-16);
|
2017-05-28 20:30:05 +02:00
|
|
|
assert_almost_eq!(a.population_variance(), b.variance(), 1e-14);
|
2017-05-19 15:54:13 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn average_vs_streaming_stats_large() {
|
|
|
|
let values = initialize_vec(1_000_000);
|
2017-05-28 21:13:47 +02:00
|
|
|
let a: average::MeanWithError = values.iter().map(|x| *x).collect();
|
2017-05-19 15:54:13 +02:00
|
|
|
let b: stats::OnlineStats = values.iter().map(|x| *x).collect();
|
|
|
|
assert_almost_eq!(a.mean(), b.mean(), 1e-16);
|
|
|
|
assert_almost_eq!(a.population_variance(), b.variance(), 1e-13);
|
|
|
|
}
|