@hackage Dist0.4.0.0
A Haskell library for probability distributions
Categories
License
MIT
Maintainer
will.yager@gmail.com
Links
Versions
Installation
Dependencies (3)
- MonadRandom >=0.3
- base >=4.7 && <=4.8.1.0
- containers >=0.5 Show all…
Dependents (1)
@hackage/acme-everything
Dist
A Haskell library for probability distributions
This library provides a data structure and associated functions for representing discrete probability distributions.
This library is optimized for very fast sampling. If n is the number of unique outcomes,
sampling from the distribution is O(log(n)) worst case, and O(1) best case.
The average time complexity depends on the distribution. A more evenly distributed
distribution will be closer to O(log(n)). A less evenly dsitributed distribution
will be closer to O(1).