Module Distributions.T

module T: sig .. end
Student's t-distribution.

type t = {
   t_df :float;
}
include Distributions.ContinuousDistribution
include Distributions.Features.Opt
val create : df:float -> t
Creates Student's t-distribution with a given number of degrees of freedom.
val mme : float array -> t
Creates Student's t-distribution with parameters, estimated with method of moments.