32 releases
0.15.1 | Apr 26, 2024 |
---|---|
0.15.0 | Mar 22, 2024 |
0.14.2 | Mar 22, 2024 |
0.14.1 | Jul 4, 2023 |
0.6.2 | Jun 21, 2017 |
#3 in Science
41,075 downloads per month
Used in 23 crates
(18 directly)
105KB
2K
SLoC
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 features are available:
libm
enablesQuantile
(using floating point functions provided bylibm
). This is enabled by default. If thestd
feature is also enabled,std
is preferred overlibm
.std
enablesQuantile
(using floating point functions provided bystd
).serde1
enables serialization, via Serde version 1.rayon
enables support forrayon::iter::FromParallelIterator
.nightly
enables the use of const generics for a histogram implementation without macros. Note that nightly features are not stable and therefore not all library and compiler versions will be compatible.
Rust version requirements
Rustc version 1.61 or greater is supported.
Related Projects
quantiles
: Provides quantile estimates with bounded error but using growing space.
Dependencies
~105–770KB
~15K SLoC