Go to file
Vinzent Steinberg fed9248122 Include license verbatim 2017-11-19 11:07:58 +01:00
benches Disable some noisy clippy warnings 2017-05-30 10:54:14 +02:00
src Move quantile tests to external file if possible 2017-11-19 10:50:59 +01:00
tests Clean up formatting 2017-11-19 10:57:01 +01: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
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.