g01ez returns the probability associated with the upper tail of the Kolmogorov–Smirnov two sample distribution.
Syntax
C# |
---|
public static double g01ez( int n1, int n2, double d, out int ifail ) |
Visual Basic |
---|
Public Shared Function g01ez ( _ n1 As Integer, _ n2 As Integer, _ d As Double, _ <OutAttribute> ByRef ifail As Integer _ ) As Double |
Visual C++ |
---|
public: static double g01ez( int n1, int n2, double d, [OutAttribute] int% ifail ) |
F# |
---|
static member g01ez : n1 : int * n2 : int * d : float * ifail : int byref -> float |
Parameters
- n1
- Type: System..::..Int32On entry: the number of observations in the first sample, .Constraint: .
- n2
- Type: System..::..Int32On entry: the number of observations in the second sample, .Constraint: .
- d
- Type: System..::..DoubleOn entry: the test statistic , for the two sample Kolmogorov–Smirnov goodness-of-fit test, that is the maximum difference between the empirical cumulative distribution functions (CDFs) of the two samples.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
g01ez returns the probability associated with the upper tail of the Kolmogorov–Smirnov two sample distribution.
Description
Let and denote the empirical cumulative distribution functions for the two samples, where and are the sizes of the first and second samples respectively.
The function g01ez computes the upper tail probability for the Kolmogorov–Smirnov two sample two-sided test statistic , where
The probability is computed exactly if and using a method given by Kim and Jenrich (1973). For the case where of the and the Smirnov approximation is used. For all other cases the Kolmogorov approximation is used. These two approximations are discussed in Kim and Jenrich (1973).
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
Kim P J and Jenrich R I (1973) Tables of exact sampling distribution of the two sample Kolmogorov–Smirnov criterion Selected Tables in Mathematical Statistics 1 80–129 American Mathematical Society
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, , or .
On entry, , or .
- The approximation solution did not converge in iterations. A tail probability of is returned by g01ez.
Accuracy
The large sample distributions used as approximations to the exact distribution should have a relative error of less than 5% for most cases.
Parallelism and Performance
None.
Further Comments
The upper tail probability for the one-sided statistics, or , can be approximated by halving the two-sided upper tail probability returned by g01ez, that is . This approximation to the upper tail probability for either or is good for small probabilities, (e.g., ) but becomes poor for larger probabilities.
The time taken by the method increases with and , until or . At this point one of the approximations is used and the time decreases significantly. The time then increases again modestly with and .
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#): g01eze.cs