Go to file
2017-11-19 10:31:00 +01:00
benches Disable some noisy clippy warnings 2017-05-30 10:54:14 +02:00
src Fix a negative underflow when calculating quantiles 2017-11-19 10:31:00 +01:00
tests Move add and merge to trait 2017-06-25 15:39:12 +02:00
.gitignore Initial commit 2017-04-26 20:24:20 +02:00
.travis.yml Fix travis 2017-05-05 16:58:39 +02:00
Cargo.toml Bump version 2017-06-21 19:42:07 +02:00
README.md Use badges 2017-06-09 10:55:42 +02:00

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.