compute 0.2.3

A crate for statistical computing.
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! A module for computing statistics of data.

mod covariance;
mod moments;
mod order;
// mod tests;

pub use self::covariance::*;
pub use self::moments::*;
pub use self::order::*;
// pub use self::tests::*;