g01ey returns the upper tail probability associated with the one sample Kolmogorov–Smirnov distribution.
Syntax
C# |
---|
public static double g01ey( int n, double d, out int ifail ) |
Visual Basic |
---|
Public Shared Function g01ey ( _ n As Integer, _ d As Double, _ <OutAttribute> ByRef ifail As Integer _ ) As Double |
Visual C++ |
---|
public: static double g01ey( int n, double d, [OutAttribute] int% ifail ) |
F# |
---|
static member g01ey : n : int * d : float * ifail : int byref -> float |
Parameters
- n
- Type: System..::..Int32On entry: , the number of observations in the sample.Constraint: .
- d
- Type: System..::..DoubleOn entry: contains the test statistic, or .Constraint: .
- ifail
- Type: System..::..Int32%On exit: unless the method detects an error or a warning has been flagged (see [Error Indicators and Warnings]).
Return Value
g01ey returns the upper tail probability associated with the one sample Kolmogorov–Smirnov distribution.
Description
Let be the sample cumulative distribution function and the hypothesised theoretical distribution function.
g01ey returns the upper tail probability, , associated with the one-sided Kolmogorov–Smirnov test statistic or , where these one-sided statistics are defined as follows;
If an exact method is used; for the details see Conover (1980). Otherwise a large sample approximation derived by Smirnov is used; see Feller (1948), Kendall and Stuart (1973) or Smirnov (1948).
References
Conover W J (1980) Practical Nonparametric Statistics Wiley
Feller W (1948) On the Kolmogorov–Smirnov limit theorems for empirical distributions Ann. Math. Statist. 19 179–181
Kendall M G and Stuart A (1973) The Advanced Theory of Statistics (Volume 2) (3rd Edition) Griffin
Siegel S (1956) Non-parametric Statistics for the Behavioral Sciences McGraw–Hill
Smirnov N (1948) Table for estimating the goodness of fit of empirical distributions Ann. Math. Statist. 19 279–281
Error Indicators and Warnings
Errors or warnings detected by the method:
On entry, .
On entry, , or .
Accuracy
The large sample distribution used as an approximation to the exact distribution should have a relative error of less than % for most cases.
Parallelism and Performance
None.
Further Comments
The upper tail probability for the two-sided statistic, , can be approximated by twice the probability returned via g01ey, that is . (Note that if the probability from g01ey is greater than then the two-sided probability should be truncated to ). This approximation to the tail probability for is good for small probabilities, (e.g., ) but becomes very poor for larger probabilities.
The time taken by the method increases with , until . At this point the approximation is used and the time decreases significantly. The time then increases again modestly with .
Example
The following example reads in different sample sizes and values for the test statistic . The upper tail probability is computed and printed for each case.
Example program (C#): g01eye.cs