Go to file
Vinzent Steinberg 80e92f6176 Update documentation 2017-05-29 00:39:33 +02:00
benches Fix benchmarks 2017-05-28 21:19:12 +02:00
src Update documentation 2017-05-29 00:39:33 +02:00
tests Move random tests to separate file 2017-05-28 23:46:15 +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 Update documentation 2017-05-29 00:39:33 +02:00
README.md Update documentation 2017-05-29 00:39:33 +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 | crates.io

Build Status

Implemented statistics

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