easy_stats 0.1.1

A simple rust package to perform basic descriptive stats on a data set.
Documentation
  • Coverage
  • 100%
    4 out of 4 items documented3 out of 3 items with examples
  • Size
  • Source code size: 3.15 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 1.07 MB This is the summed size of all files generated by rustdoc for all configured targets
  • Links
  • masaimahapa/rust-stats
    1 0 0
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • masaimahapa

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.