865 B
865 B
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
.
Implemented statistics
- Mean and its error.
- Variance, skewness, kurtosis.
- Minimum and maximum.
- Quantile.
Related Projects
quantiles
: Provides quantile estimates with bounded error but using growing space.