Go to file
Vinzent Steinberg b96bb30004 Use badges 2017-06-09 10:55:42 +02:00
benches Disable some noisy clippy warnings 2017-05-30 10:54:14 +02:00
src Fix a clippy warning 2017-05-30 11:18:25 +02:00
tests Disable some noisy clippy warnings 2017-05-30 10:54:14 +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-05-31 00:06:53 +02: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.