10 releases (4 stable)
3.0.1 | Dec 5, 2021 |
---|---|
3.0.0 | Mar 5, 2021 |
2.0.0 | Mar 4, 2021 |
1.0.0 | Jan 4, 2019 |
0.0.3 | Apr 5, 2017 |
#8 in #percentile
8,532 downloads per month
Used in serenade
44KB
822 lines
Stats CLI
Rust package for efficiently computing statistics on floating point numbers from the command line. This contains both a command line binary and a rust library with incremental statistics objects. Currently only summary statistics (min, mean, variance), percentiles, and mode are supported.
See the rust documentation for the library api, or the cli help for usage.
To Do
- Add sketches (many other crates do this)
- Add testing to cli
- Weigh tradeoffs behind
DerefCopy
trait vsBorrow + Copy
lib.rs
:
Module with incremental statistics functions
This contains helper functions for computing statistics on iterators, as well as structs that support incremental addition of data.
Dependencies
~1MB