rust-average/src/moments/mod.rs

17 lines
334 B
Rust
Raw Normal View History

use core;
use conv::ApproxFrom;
use super::{Estimate, Merge};
include!("mean.rs");
include!("variance.rs");
include!("skewness.rs");
include!("kurtosis.rs");
2017-05-28 21:13:47 +02:00
// It is possible to calculate higher moments the same way,
// see https://doi.org/10.1007/s00180-015-0637-z.
2017-05-29 00:39:33 +02:00
/// Alias for `Variance`.
2017-05-28 21:13:47 +02:00
pub type MeanWithError = Variance;