Enumerates the possible ways to estimate the scale parameter in a generalized linear model.
Namespace:
Extreme.Statistics
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
public enum ScaleFittingMethod
Public Enumeration ScaleFittingMethod
public enum class ScaleFittingMethod
| Member name | Value | Description |
---|
| Constant | 0 |
The scale parameter is set to a constant. The default value is 1.
|
| MaximumLikelihood | 1 |
The value of the scale parameter is estimated along with the other parameters of the model
using the method of Maximum Likelihood. This method is currently not supported.
|
| PearsonChiSquare | 2 |
The value of the scale parameter is estimated based on the Pearson chi-square statistic of the
model.
|
| Deviance | 3 |
The value of the scale parameter is estimated based on the deviance statistic of the
model.
|
Reference