Vinzent Steinberg
56344750a7
Fixes to
Histogram
1. Now histograms with more than 31 bins are supported (before there were issues with missing implementations on arrays.) 2. The items defined by `define_histogram!` are in their own module, to avoid issues with Rust's lack of macro hygiene for items.
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
.
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.
Related Projects
quantiles
: Provides quantile estimates with bounded error but using growing space.
Description
Languages
Rust
100%