Test Of Normality Enumeration
Enumerates the choices when testing whether a sample follows
a normal distribution.
Definition
Namespace: Numerics.NET.Statistics
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 10.4.0
C#
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 10.4.0
public enum TestOfNormalityRemarks
The default is the Anderson-Darling test.
Members
| AndersonDarling | 0 | Use the Anderson-Darling test. |
| ChiSquared | 1 | Use the chi-square goodness-of-fit test. |
| ShapiroWilk | 2 | Use the Shapiro-Wilk test. The sample size must be between 3 and 5000. |
| KolmogorovSmirnov | 3 | Use the one-sample Kolmogorov-Smirnov test against a fitted normal distribution. |
| None | -1 | No test is performed. |