EstimationMethod Enumeration

Represents the possible methods for estimating the parameters of a distribution.

Definition

Namespace: Extreme.Statistics.Distributions
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
C#
public enum EstimationMethod

Remarks

Pass an EstimationMethod value as a parameter to the staticEstimate method of a probability distribution.

Members

Default0 Use the default method for the distribution. This may be either a maximum likelihood or matching moments, whichever is available.
MatchingMoments1 Estimate the parameters such that the moments of the distribution match the moments of the variable's distribution.
MaximumLikelihood2 Estimate the parameters using the method of maximum likelihood.

See Also