Module Distributions.Beta

module Beta: sig .. end
The beta distribution.

type t = {
   beta_alpha :float;
   beta_beta :float;
}
include Distributions.ContinuousDistribution
include Distributions.Features.S
val create : alpha:float -> beta:float -> t
Creates beta distribution. Both shape parameters must be positive.
val mme : float array -> t
Creates beta distribution with parameters, estimated with method of moments.