Dart library to sample univariate random distributions and calculate its statistics.
- Beta
- Binomial
- Cauchy
- Chi-Square
- Exponential
- Gamma
- Geometric
- Normal
- Pareto
- Student's T
- Uniform
- Weibull
- Beta
- Logistic
- Log-Normal
- F
- Laplace
final beta = Beta(2.31, 0.627);
print(beta.ppf(0.0));
for (int i = 0; i < 100; i++) print(randn);
final randnCust = normal(loc: 0.5);
for (int i = 0; i < 100; i++) print(randnCust);
- Porting from Golang library prob