Module Distributions.F

module F: sig .. end
Fisher-Snedecor distribution.

type t = {
   f_df1 :float;
   f_df2 :float;
}
include Distributions.ContinuousDistribution
include Distributions.Features.Opt
val create : df1:int -> df2:int -> t
Creates Fisher-Snedecor distribution with a given number of degrees of freedom.
val mme : float array -> t
Creates Fisher-Snedecor distribution with parameters, estimated with method of moments.