Go to file
Vinzent Steinberg a4098571fd Bump version 2019-04-25 13:53:21 +02:00
benches Fix moments benchmark 2018-07-11 15:52:57 +02:00
src Improve `concatenate!` to support usage outside braces 2019-04-25 13:51:33 +02:00
tests Improve `concatenate!` to support usage outside braces 2019-04-25 13:51:33 +02:00
.gitignore Initial commit 2017-04-26 20:24:20 +02:00
.travis.yml Guarantee and test minimal version 2019-01-22 14:36:53 +01:00
Cargo.toml Bump version 2019-04-25 13:53:21 +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 Guarantee and test minimal version 2019-01-22 14:36:53 +01: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.

This crate works without std.

Documentation Status Latest Version Build Status

Implemented statistics

  • Mean and its error.
  • Variance, skewness, kurtosis.
  • Arbitrary moments.
  • Minimum and maximum.
  • Quantile.
  • Histogram.

Crate features

The following optional feature is available:

  • serde1 enables serialization, via Serde version 1.

Rust version requirements

Rustc version 1.22 or greater is supported.

  • quantiles: Provides quantile estimates with bounded error but using growing space.