1
2
3
4
5
6
7
8
//! Statistics toolbox.

#[cfg(test)]
extern crate assert;

mod moment;

pub use moment::{mean, variance};