2 releases
0.1.1 | Jul 6, 2022 |
---|---|
0.1.0 | Jul 6, 2022 |
#629 in Machine learning
4KB
Rust easy stats
easy_stats is a library which contains functions that make it easy to perform basic descriptive statistics.
Usage
Calculate the mean from a list of numbers:
use easy_stats;
let arg = vec![1.0,2.0,3.0,4.0, 5.0];
let average = easy_stats::mean(&arg);
assert_eq!(3.0, average);
Contributing
Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.
Please make sure to update tests as appropriate.
lib.rs
:
Easy Stats
easy_stats
is a collection of utility functions which make
performing descriptive statistics easy