Go to file
Vinzent Steinberg 9a2047a05d Bump version 2018-07-10 18:07:03 +02:00
benches Fix benchmarks 2018-07-06 10:56:35 +02:00
src Make it possible to calculate an arbitrary number of moments 2018-07-10 17:19:57 +02:00
tests Make it possible to calculate an arbitrary number of moments 2018-07-10 17:19:57 +02: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 Bump version 2018-07-10 18:07:03 +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 Update README 2018-07-06 13:11:40 +02:00

README.md

average

Calculate statistics of a sequence iteratively in a single pass, using constant space 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.
  • Arbitrary moments.
  • Minimum and maximum.
  • Quantile.
  • Histogram.
  • quantiles: Provides quantile estimates with bounded error but using growing space.