Add a reference for calculating moments

This commit is contained in:
Vinzent Steinberg 2017-06-27 12:40:09 +02:00
parent 9daef2c101
commit 0098668d3b
1 changed files with 3 additions and 0 deletions

View File

@ -9,5 +9,8 @@ include!("variance.rs");
include!("skewness.rs");
include!("kurtosis.rs");
// It is possible to calculate higher moments the same way,
// see https://doi.org/10.1007/s00180-015-0637-z.
/// Alias for `Variance`.
pub type MeanWithError = Variance;