Module Distributions.Logistic

module Logistic: sig .. end
Logistic distribution.

type t = {
   logistic_location :float;
   logistic_scale :float;
}
include Distributions.ContinuousDistribution
include Distributions.Features.S
val create : location:float -> scale:float -> t
Creates logistic distribution.
val mme : float array -> t
Creates logistic distribution with parameters, estimated with method of moments.