Go to file
Vinzent Steinberg c1fab4722c Implement incremental calculation of arbitrary moments 2018-01-11 18:29:43 +01:00
benches Disable some noisy clippy warnings 2017-05-30 10:54:14 +02:00
src Implement incremental calculation of arbitrary moments 2018-01-11 18:29:43 +01:00
tests Implement incremental calculation of arbitrary moments 2018-01-11 18:29:43 +01:00
.gitignore Initial commit 2017-04-26 20:24:20 +02:00
.travis.yml add serde to travis 2017-12-17 23:31:25 -05:00
Cargo.toml Implement incremental calculation of arbitrary moments 2018-01-11 18:29:43 +01:00
LICENSE-APACHE Include license verbatim 2017-11-19 11:07:58 +01:00
LICENSE-MIT Include license verbatim 2017-11-19 11:07:58 +01:00
README.md Use badges 2017-06-09 10:55:42 +02:00

README.md

average

Calculate statistics of a sequence iteratively in a single pass, using constant memory and avoiding numerical problems. The calculations can be easily parallelized by using merge.

Documentation Status Latest Version Build Status

Implemented statistics

  • Mean and its error.
  • Variance, skewness, kurtosis.
  • Minimum and maximum.
  • Quantile.