G01EYF (PDF version)
G01 Chapter Contents
G01 Chapter Introduction
NAG Library Manual

NAG Library Routine Document

G01EYF

Note:  before using this routine, please read the Users' Note for your implementation to check the interpretation of bold italicised terms and other implementation-dependent details.

+ Contents

    1  Purpose
    7  Accuracy

1  Purpose

G01EYF returns the upper tail probability associated with the one sample Kolmogorov–Smirnov distribution, via the routine name.

2  Specification

FUNCTION G01EYF ( N, D, IFAIL)
REAL (KIND=nag_wp) G01EYF
INTEGER  N, IFAIL
REAL (KIND=nag_wp)  D

3  Description

Let Snx be the sample cumulative distribution function and F0x the hypothesised theoretical distribution function.
G01EYF returns the upper tail probability, p, associated with the one-sided Kolmogorov–Smirnov test statistic Dn+ or Dn-, where these one-sided statistics are defined as follows;
Dn+ = supxSnx-F0x, Dn- = supxF0x-Snx.
If n100 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).

4  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

5  Parameters

1:     N – INTEGERInput
On entry: n, the number of observations in the sample.
Constraint: N1.
2:     D – REAL (KIND=nag_wp)Input
On entry: contains the test statistic, Dn+ or Dn-.
Constraint: 0.0D1.0.
3:     IFAIL – INTEGERInput/Output
On entry: IFAIL must be set to 0, -1​ or ​1. If you are unfamiliar with this parameter you should refer to Section 3.3 in the Essential Introduction for details.
For environments where it might be inappropriate to halt program execution when an error is detected, the value -1​ or ​1 is recommended. If the output of error messages is undesirable, then the value 1 is recommended. Otherwise, if you are not familiar with this parameter, the recommended value is 0. When the value -1​ or ​1 is used it is essential to test the value of IFAIL on exit.
On exit: IFAIL=0 unless the routine detects an error or a warning has been flagged (see Section 6).

6  Error Indicators and Warnings

If on entry IFAIL=0 or -1, explanatory error messages are output on the current error message unit (as defined by X04AAF).
Errors or warnings detected by the routine:
IFAIL=1
On entry,N<1.
IFAIL=2
On entry,D<0.0,
orD>1.0.

7  Accuracy

The large sample distribution used as an approximation to the exact distribution should have a relative error of less than 2.5% for most cases.

8  Further Comments

The upper tail probability for the two-sided statistic, Dn=maxDn+,Dn-, can be approximated by twice the probability returned via G01EYF, that is 2p. (Note that if the probability from G01EYF is greater than 0.5 then the two-sided probability should be truncated to 1.0). This approximation to the tail probability for Dn is good for small probabilities, (e.g., p0.10) but becomes very poor for larger probabilities.
The time taken by the routine increases with n, until n>100. At this point the approximation is used and the time decreases significantly. The time then increases again modestly with n.

9  Example

The following example reads in 10 different sample sizes and values for the test statistic Dn. The upper tail probability is computed and printed for each case.

9.1  Program Text

Program Text (g01eyfe.f90)

9.2  Program Data

Program Data (g01eyfe.d)

9.3  Program Results

Program Results (g01eyfe.r)


G01EYF (PDF version)
G01 Chapter Contents
G01 Chapter Introduction
NAG Library Manual

© The Numerical Algorithms Group Ltd, Oxford, UK. 2012