Module Distributions.LogNormal

module LogNormal: sig .. end
The log-normal distribution.

type t = {
   lognormal_mean :float;
   lognormal_sd :float;
}
include Distributions.ContinuousDistribution
include Distributions.Features.S
val create : mean:float -> sd:float -> t
Creates log-normal distribution from parameters.
val mle : float array -> t
Creates log-normal distribution with a MLE of parameters, estimated from given data.