2 releases
Uses old Rust 2015
0.0.2 | Aug 15, 2018 |
---|---|
0.0.1 | Aug 13, 2018 |
#4 in #odds
9KB
134 lines
Mendel
What is this?
This is a "statistics" library without the math. This library predicts odds based purely off of simulation results.
Documentation
Usage
Add this to your Cargo.toml
:
[dependencies]
mendel = "0.0.2"
and this to your crate root:
extern crate mendel;
Should I use this for something serious?
No.
lib.rs
:
The mendel
crate provides a non-sophisticated way to predict probabilities of population
selections, such as the odds of selecting a green ball out of a bag of many different colored
balls or the odds of selecting 2 boys and 1 girl from a classroom.
mendel
accomplishes not through (arguably trivial) mathematical probability formulas, but
rather via running many simulations on the population selections and recording the results.
Dependencies
~400KB