NAG Library Routine Document
g01eyf (prob_kolmogorov1)
1
Purpose
g01eyf returns the upper tail probability associated with the one sample Kolmogorov–Smirnov distribution.
2
Specification
Fortran Interface
Real (Kind=nag_wp) | :: | g01eyf | Integer, Intent (In) | :: | n | Integer, Intent (Inout) | :: | ifail | Real (Kind=nag_wp), Intent (In) | :: | d |
|
C Header Interface
#include <nagmk26.h>
double |
g01eyf_ (const Integer *n, const double *d, Integer *ifail) |
|
3
Description
Let be the sample cumulative distribution function and the hypothesised theoretical distribution function.
g01eyf 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).
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
Arguments
- 1: – IntegerInput
-
On entry: , the number of observations in the sample.
Constraint:
.
- 2: – Real (Kind=nag_wp)Input
-
On entry: contains the test statistic, or .
Constraint:
.
- 3: – IntegerInput/Output
-
On entry:
ifail must be set to
,
. If you are unfamiliar with this argument you should refer to
Section 3.4 in How to Use the NAG Library and its Documentation for details.
For environments where it might be inappropriate to halt program execution when an error is detected, the value
is recommended. If the output of error messages is undesirable, then the value
is recommended. Otherwise, if you are not familiar with this argument, the recommended value is
.
When the value is used it is essential to test the value of ifail on exit.
On exit:
unless the routine detects an error or a warning has been flagged (see
Section 6).
6
Error Indicators and Warnings
If on entry
or
, explanatory error messages are output on the current error message unit (as defined by
x04aaf).
Errors or warnings detected by the routine:
-
On entry, .
Constraint: .
-
On entry, or : .
An unexpected error has been triggered by this routine. Please
contact
NAG.
See
Section 3.9 in How to Use the NAG Library and its Documentation for further information.
Your licence key may have expired or may not have been installed correctly.
See
Section 3.8 in How to Use the NAG Library and its Documentation for further information.
Dynamic memory allocation failed.
See
Section 3.7 in How to Use the NAG Library and its Documentation for further information.
7
Accuracy
The large sample distribution used as an approximation to the exact distribution should have a relative error of less than % for most cases.
8
Parallelism and Performance
g01eyf is not threaded in any implementation.
The upper tail probability for the two-sided statistic, , can be approximated by twice the probability returned via g01eyf, that is . (Note that if the probability from g01eyf 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 routine increases with , until . At this point the approximation is used and the time decreases significantly. The time then increases again modestly with .
10
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.
10.1
Program Text
Program Text (g01eyfe.f90)
10.2
Program Data
Program Data (g01eyfe.d)
10.3
Program Results
Program Results (g01eyfe.r)