NAG Library Routine Document
G08EAF
1 Purpose
G08EAF performs a runs up (or a runs down) test on a sequence of observations.
2 Specification
SUBROUTINE G08EAF ( |
CL, N, X, M, MAXR, NRUNS, NCOUNT, EX, COV, LDCOV, CHI, DF, PROB, WRK, LWRK, IFAIL) |
INTEGER |
N, M, MAXR, NRUNS, NCOUNT(MAXR), LDCOV, LWRK, IFAIL |
REAL (KIND=nag_wp) |
X(N), EX(MAXR), COV(LDCOV,MAXR), CHI, DF, PROB, WRK(LWRK) |
CHARACTER(1) |
CL |
|
3 Description
Runs tests may be used to investigate for trends in a sequence of observations. G08EAF computes statistics for the runs up test. If the runs down test is desired then each observation must be multiplied by
before G08EAF is called with the modified vector of observations.
G08EAF may be used in two different modes:
(i) |
a single call to G08EAF which computes all test statistics after counting the runs; |
(ii) |
multiple calls to G08EAF with the final test statistics only being computed in the last call. |
The second mode is necessary if all the data do not fit into the memory. See parameter
CL in
Section 5 for details on how to invoke each mode.
A run up is a sequence of numbers in increasing order. A run up ends at when and the new run then begins at . G08EAF counts the number of runs up of different lengths. Let denote the number of runs of length , for . The number of runs of length or greater is then denoted by .
An unfinished run at the end of a sequence is not counted unless the sequence is part of an initial or intermediate call to G08EAF (i.e., unless there is another call to G08EAF to follow) in which case the unfinished run is used together with the beginning of the next sequence of numbers input to G08EAF in the next call. The following is a trivial example.
Suppose we called G08EAF twice with the following two sequences:
- ( ) and
- ( ).
Then after the second call G08EAF would have counted the runs up of the following lengths:
When the counting of runs is complete G08EAF computes the expected values and covariances of the counts,
. For the details of the method used see
Knuth (1981). An approximate
statistic with
degrees of freedom is computed, where
where
- is the vector of counts, , for ,
- is the vector of expected values,
- , for , where is the expected value for under the null hypothesis of randomness, and
- is the covariance matrix of under the null hypothesis.
The use of the -distribution as an approximation to the exact distribution of the test statistic, , improves as the length of the sequence relative to increases and hence the expected value, , increases.
You may specify the total number of runs to be found. If the specified number of runs is found before the end of a sequence G08EAF will exit before counting any further runs. The number of runs actually counted and used to compute the test statistic is returned via
NRUNS.
4 References
Dagpunar J (1988) Principles of Random Variate Generation Oxford University Press
Knuth D E (1981) The Art of Computer Programming (Volume 2) (2nd Edition) Addison–Wesley
Morgan B J T (1984) Elements of Simulation Chapman and Hall
Ripley B D (1987) Stochastic Simulation Wiley
5 Parameters
- 1: CL – CHARACTER(1)Input
On entry: must specify the type of call to G08EAF.
- This is the one and only call to G08EAF (single call mode). All data are to be input at once. All test statistics are computed after the counting of runs is complete.
- This is the first call to the routine. All initializations are carried out and the counting of runs begins. The final test statistics are not computed since further calls will be made to G08EAF.
- This is an intermediate call during which the counts of runs are updated. The final test statistics are not computed since further calls will be made to G08EAF.
- This is the last call to G08EAF. The test statistics are computed after the final counting of runs is completed.
Constraint:
, , or .
- 2: N – INTEGERInput
On entry: , the length of the current sequence of observations.
Constraints:
- if , ;
- otherwise .
- 3: X(N) – REAL (KIND=nag_wp) arrayInput
On entry: the sequence of observations.
- 4: M – INTEGERInput
On entry: the maximum number of runs to be sought. If
then no limit is placed on the number of runs that are found.
M must not be changed between calls to G08EAF.
Constraint:
if , .
- 5: MAXR – INTEGERInput
On entry:
, the length of the longest run for which tabulation is desired. That is, all runs with length greater than or equal to
are counted together.
MAXR must not be changed between calls to G08EAF.
Constraint:
and if , .
- 6: NRUNS – INTEGERInput/Output
-
On entry: if
or
,
NRUNS need not be set.
If
or
,
NRUNS must contain the value returned by the previous call to G08EAF.
On exit: the number of runs actually found.
- 7: NCOUNT(MAXR) – INTEGER arrayInput/Output
On entry: if
or
,
NCOUNT need not be set.
If
or
,
NCOUNT must contain the values returned by the previous call to G08EAF.
On exit: the counts of runs of the different lengths,
, for .
- 8: EX(MAXR) – REAL (KIND=nag_wp) arrayOutput
-
On exit: if
or
, (i.e., if it is the final exit) then
EX contains the expected values of the counts,
, for
.
Otherwise the elements of
EX are not set.
- 9: COV(LDCOV,MAXR) – REAL (KIND=nag_wp) arrayOutput
On exit: if
or
(i.e., if it is the final exit) then
COV contains the covariance matrix of the counts,
.
Otherwise the elements of
COV are not set.
- 10: LDCOV – INTEGERInput
On entry: the first dimension of the array
COV as declared in the (sub)program from which G08EAF is called.
Constraint:
.
- 11: CHI – REAL (KIND=nag_wp)Output
-
On exit: if
or
(i.e., if it is the final exit) then
CHI contains the approximate
test statistic,
.
Otherwise
CHI is not set.
- 12: DF – REAL (KIND=nag_wp)Output
-
On exit: if
or
(i.e., if it is the final exit) then
DF contains the degrees of freedom of the
statistic.
- 13: PROB – REAL (KIND=nag_wp)Output
-
On exit: if
or
, (i.e., if it is the final exit) then
PROB contains the upper tail probability corresponding to the
test statistic, i.e., the significance level.
Otherwise
PROB is not set.
- 14: WRK(LWRK) – REAL (KIND=nag_wp) arrayWorkspace
- 15: LWRK – INTEGERInput
On entry: the dimension of the array
WRK as declared in the (sub)program from which G08EAF is called.
Constraint:
.
- 16: IFAIL – INTEGERInput/Output
-
On entry:
IFAIL must be set to
,
. 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
is recommended. If the output of error messages is undesirable, then the value
is recommended. Otherwise, because for this routine the values of the output parameters may be useful even if
on exit, 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).
Note: G08EAF may return useful information for one or more of the following detected errors or warnings.
Errors or warnings detected by the routine:
-
On entry, | , , or . |
On entry, | if , |
or | otherwise. |
-
On entry, | with , . |
On entry, | , |
or | and . |
On entry, | . |
There is a tie in the sequence of observations.
The total length of the runs found is less than
MAXR.
The covariance matrix stored in
COV is not positive definite. This may be because the value of
MAXR is too large relative to the full length of the series. Thus the approximate
test statistic cannot be computed.
The number of runs requested were not found. All statistics are still computed and the information returned may still be of use.
7 Accuracy
The computations are believed to be stable. The computation of
PROB given the values of
CHI and
DF will obtain a relative accuracy of five significant figures for most cases.
The time taken by G08EAF increases with the number of observations , and also depends to some extent on whether the call to G08EAF is an only, first, intermediate or last call.
9 Example
The following program performs a runs up test on pseudorandom numbers. G08EAF is called times with observations each time. No limit is placed on the number of runs to be counted. All runs of length or more are counted together.
9.1 Program Text
Program Text (g08eafe.f90)
9.2 Program Data
Program Data (g08eafe.d)
9.3 Program Results
Program Results (g08eafe.r)