grizzly_distuv

Last updated:

0 purchases

grizzly_distuv Image
grizzly_distuv Images
Add to Cart

Description:

grizzly distuv

DistUV #
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

Usage #
Statistics of a distribution #
final beta = Beta(2.31, 0.627);
print(beta.ppf(0.0));
copied to clipboard
Sample random number from normal distribution #
for (int i = 0; i < 100; i++) print(randn);
copied to clipboard
Sample random number from custom normal distribution #
final randnCust = normal(loc: 0.5);
for (int i = 0; i < 100; i++) print(randnCust);
copied to clipboard
References #

Porting from Golang library prob

License:

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Files In This Product:

Customer Reviews

There are no reviews.