2017-05-05 16:52:54 +02:00
|
|
|
# average
|
|
|
|
|
2017-05-29 00:39:33 +02:00
|
|
|
Calculate statistics of a sequence iteratively in a single pass, using
|
|
|
|
constant memory and avoiding numerical problems. The calculations can be
|
2017-05-24 19:45:58 +02:00
|
|
|
easily parallelized by using `merge`.
|
2017-05-05 16:52:54 +02:00
|
|
|
|
2017-05-05 16:54:01 +02:00
|
|
|
[Documentation](https://docs.rs/average) |
|
2017-05-05 17:01:59 +02:00
|
|
|
[crates.io](https://crates.io/crates/average)
|
|
|
|
|
2017-05-05 17:01:10 +02:00
|
|
|
[![Build Status](https://travis-ci.org/vks/average.svg?branch=master)](https://travis-ci.org/vks/average)
|
2017-05-16 18:21:27 +02:00
|
|
|
|
2017-05-29 00:39:33 +02:00
|
|
|
## Implemented statistics
|
2017-05-16 18:21:27 +02:00
|
|
|
|
2017-05-29 00:39:33 +02:00
|
|
|
* Mean and its error.
|
|
|
|
* Variance, skewness, kurtosis.
|
|
|
|
* Minium and maximum.
|
|
|
|
* Quantile.
|