|
ContinuityCorrection Enumeration
|
Continuity correction to be used when aproximating
discrete values through a continuous distribution.
Namespace:
Accord.Statistics.Distributions.Univariate
Assembly:
Accord.Statistics (in Accord.Statistics.dll) Version: 3.8.0
Syntax public enum ContinuityCorrection
Public Enumeration ContinuityCorrection
Members
| Member name | Value | Description |
---|
| None | 0 |
No correction for continuity should be applied.
|
| Midpoint | 1 |
The correction for continuity is -0.5 when the statistic is
greater than the mean and +0.5 when it is less than the mean.
|
| KeepInside | 2 |
The correction for continuity will be -0.5 when computing values at the
right (upper) tail of the
distribution, and +0.5 when computing at the
left (lower) tail.
|
See Also