Module Distributions.Gamma

module Gamma: sig .. end
The gamma distribution.

type t = {
   gamma_shape :float;
   gamma_scale :float;
}
include Distributions.ContinuousDistribution
include Distributions.Features.S
val create : shape:float -> scale:float -> t
Creates gamma distribution. Both shape and scale must be positive.
val mme : float array -> t
Creates gamma distribution with parameters, estimated with method of moments.