The routine may be called by the names g08ebf or nagf_nonpar_randtest_pairs.
3Description
g08ebf computes the statistics for performing a pairs test which may be used to investigate deviations from randomness in a sequence, , of observations.
For a given lag, , an matrix, , of counts is formed as follows. The element of is the number of pairs such that
where if , and , if .
Note that all pairs formed are non-overlapping pairs and are thus independent under the assumption of randomness.
Under the assumption that the sequence is random, the expected number of pairs for each class (i.e., each element of the matrix of counts) is the same; that is, the pairs should be uniformly distributed over the unit square . Thus the expected number of pairs for each class is just the total number of pairs, , divided by the number of classes, .
The test statistic used to test the hypothesis of randomness is defined as
where expected number of pairs in each class.
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.
g08ebf may be used in two different modes:
(i)a single call to g08ebf which computes all test statistics after counting the pairs;
(ii)multiple calls to g08ebf 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 argument cl in Section 5 for details on how to invoke each mode.
4References
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
5Arguments
1: – Character(1)Input
On entry: indicates the type of call to g08ebf.
This is the one and only call to g08ebf (single call mode). All data are to be input at once. All test statistics are computed after the counting of pairs is complete.
This is the first call to the routine. All initializations are carried out and the counting of pairs begins. The final test statistics are not computed since further calls will be made to g08ebf.
This is an intermediate call during which the counts of pairs are updated. The final test statistics are not computed since further calls will be made to g08ebf.
This is the last call to g08ebf. The test statistics are computed after the final counting of runs is complete.
Constraint:
, , or .
2: – IntegerInput
On entry: , the number of observations.
Constraints:
if , ;
otherwise .
3: – Real (Kind=nag_wp) arrayInput
On entry: the sequence of observations.
Constraint:
, for .
4: – IntegerInput
On entry: , the size of the matrix of counts.
msize must not be changed between calls to g08ebf.
Constraint:
.
5: – IntegerInput
On entry: , the lag to be used in choosing pairs.
If , then we consider the pairs , for , where is the number of observations.
If , then we consider the pairs , for , where is the number of observations.
On exit: if or (i.e., if it is a final exit) then prob contains the upper tail probability associated with the test statistic, i.e., the significance level.
wrk is used to store information between successive calls to g08ebf and, therefore, must not be changed.
13: – IntegerInput/Output
On entry: ifail must be set to , or to set behaviour on detection of an error; these values have no effect when no error is detected.
A value of causes the printing of an error message and program execution will be halted; otherwise program execution continues. A value of means that an error message is printed while a value of means that it is not.
If halting is not appropriate, the value or is recommended. If message printing is undesirable, then the value is recommended. Otherwise, the value is recommended since useful values can be provided in some output arguments even when on exit. When the value or 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).
6Error 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:
Note: in some cases g08ebf may return useful information.
On entry, . Constraint: , , or .
On entry, . Constraint: if , , otherwise .
On entry, . Constraint:
On entry, and . Constraint: and if , .
On entry, and .
Constraint: .
On entry, at least one element of x is out of range.
Constraint: , for .
No pairs were found. This will occur if the value of lag is greater than or equal to the total number of observations.
msize is too large relative to the number of pairs, therefore, the expected value for at least one cell is less than or equal to . This implies that the distribution may not be a very good approximation to the distribution of test statistic. , number of pairs and expected value . All statistics are returned and may still be of use.
An unexpected error has been triggered by this routine. Please
contact NAG.
See Section 7 in the Introduction to the NAG Library FL Interface for further information.
Your licence key may have expired or may not have been installed correctly.
See Section 8 in the Introduction to the NAG Library FL Interface for further information.
Dynamic memory allocation failed.
See Section 9 in the Introduction to the NAG Library FL Interface for further information.
7Accuracy
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.
8Parallelism and Performance
g08ebf is not thread safe and should not be called from a multithreaded user program. Please see Section 1 in FL Interface Multithreading for more information on thread safety.
g08ebf is not threaded in any implementation.
9Further Comments
If after forming the pairs in an initial or intermediate call to g08ebf there is an observation left over at the end of the sequence, this observation is used at the beginning of the new sequence provided by the following call to g08ebf. Clearly an observation left over from an only or final call to g08ebf is ignored.
The time taken by the routine increases with the number of observations , and also depends to some extent on whether the call to g08ebf is an only, first, intermediate or last call.
10Example
The following program performs the pairs test on pseudorandom numbers. g08ebf is called times with observations on each call. is used and the pairs are tallied into a matrix.