Represents the possible methods for estimating the parameters of a distribution.
Namespace:
Extreme.Statistics.Distributions
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
public enum EstimationMethod
Public Enumeration EstimationMethod
public enum class EstimationMethod
| Member name | Value | Description |
---|
| Default | 0 |
Use the default method for the distribution. This may be either a maximum likelihood
or matching moments, whichever is available.
|
| MatchingMoments | 1 |
Estimate the parameters such that the moments of the distribution
match the moments of the variable's distribution.
|
| MaximumLikelihood | 2 |
Estimate the parameters using the method of maximum likelihood.
|
Pass an EstimationMethod value as a parameter to the
Estimate method of a probability distribution.
Reference