G08EBF (PDF version)
G08 Chapter Contents
G08 Chapter Introduction
NAG Library Manual

NAG Library Routine Document

G08EBF

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

G08EBF performs a pairs test on a sequence of observations in the interval 0,1.

2  Specification

SUBROUTINE G08EBF ( CL, N, X, MSIZE, LAG, NCOUNT, LDC, EX, CHI, DF, PROB, WRK, IFAIL)
INTEGER  N, MSIZE, LAG, NCOUNT(LDC,MSIZE), LDC, IFAIL
REAL (KIND=nag_wp)  X(N), EX, CHI, DF, PROB, WRK(2*LAG)
CHARACTER(1)  CL

3  Description

G08EBF computes the statistics for performing a pairs test which may be used to investigate deviations from randomness in a sequence, x=xi:i=1,2,,n, of 0,1 observations.
For a given lag, l1, an m by m matrix, C, of counts is formed as follows. The element cjk of C is the number of pairs xi,xi+l such that
j-1mxi<jm
k- 1mxi+l<km
where i=1,3,5,,n-1 if l=1, and i=1,2,,l,2l+1,2l+2,3l,4l+1,,n-l, if l>1.
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 0,12. Thus the expected number of pairs for each class is just the total number of pairs, j,k=1mcjk, divided by the number of classes, m2.
The χ2 test statistic used to test the hypothesis of randomness is defined as
X2=j,k=1m cjk-e 2e,
where e=j,k=1mcjk/m2= expected number of pairs in each class.
The use of the χ2-distribution as an approximation to the exact distribution of the test statistic, X2, improves as the length of the sequence relative to m increases and hence the expected value, e, 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 parameter CL in Section 5 for details on how to invoke each mode.

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: indicates the type of call to G08EBF.
CL='S'
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.
CL='F'
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.
CL='I'
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.
CL='L'
This is the last call to G08EBF. The test statistics are computed after the final counting of runs is complete.
Constraint: CL='S', 'F', 'I' or 'L'.
2:     N – INTEGERInput
On entry: n, the number of observations.
Constraints:
  • if CL='S', N2;
  • otherwise N1.
3:     X(N) – REAL (KIND=nag_wp) arrayInput
On entry: the sequence of observations.
Constraint: 0.0Xi1.0, for i=1,2,,n.
4:     MSIZE – INTEGERInput
On entry: m, the size of the matrix of counts.
MSIZE must not be changed between calls to G08EBF.
Constraint: MSIZE2.
5:     LAG – INTEGERInput
On entry: l, the lag to be used in choosing pairs.
If LAG=1, then we consider the pairs Xi,Xi+1, for i=1,3,,n-1, where n is the number of observations.
If LAG>1, then we consider the pairs Xi,Xi+l, for i=1,2,,l,2l+1,2l+2,,3l,4l+1,,n-l, where n is the number of observations.
LAG must not be changed between calls to G08EBF.
Constraints:
  • LAG1;
  • if CL='S', LAG<N.
6:     NCOUNT(LDC,MSIZE) – INTEGER arrayInput/Output
On entry: if CL='S' or 'F', NCOUNT need not be set.
If CL='I' or 'L', NCOUNT must contain the values returned by the previous call to G08EBF.
On exit: is an MSIZE by MSIZE matrix containing the counts of the number of pairs in each cell, cij, for i=1,2,,m and j=1,2,,m.
7:     LDC – INTEGERInput
On entry: the first dimension of the array NCOUNT as declared in the (sub)program from which G08EBF is called.
Constraint: LDCMSIZE.
8:     EX – REAL (KIND=nag_wp)Output
On exit: if CL='S' or 'L' (i.e., if it is a final exit) then EX contains the expected number of counts in each cell, e.
Otherwise EX is not set.
9:     CHI – REAL (KIND=nag_wp)Output
On exit: if CL='S' or 'L' (i.e., if it is a final exit) then CHI contains the χ2 test statistic, X2, for testing the null hypothesis of randomness.
Otherwise CHI is not set.
10:   DF – REAL (KIND=nag_wp)Output
On exit: if CL='S' or 'L' (i.e., if it is a final exit) then DF contains the degrees of freedom for the χ2 statistic.
Otherwise DF is not set.
11:   PROB – REAL (KIND=nag_wp)Output
On exit: if CL='S' or 'L' (i.e., if it is a final exit) then PROB contains the upper tail probability associated with the χ2 test statistic, i.e., the significance level.
Otherwise PROB is not set.
12:   WRK(2×LAG) – REAL (KIND=nag_wp) arrayCommunication Array
WRK is used to store information between successive calls to G08EBF and therefore must not be changed.
13:   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, because for this routine the values of the output parameters may be useful even if IFAIL0 on exit, the recommended value is -1. 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).
Note: G08EBF may return useful information for one or more of the following detected errors or warnings.
Errors or warnings detected by the routine:
IFAIL=1
On entry,CL'S', 'F', 'I' or 'L'.
IFAIL=2
On entry,N<1.
orCL='S' and N<2.
IFAIL=3
On entry,MSIZE1.
IFAIL=4
On entry,LAG<1,
orCL='S' and LAGN.
IFAIL=5
On entry,LDC<MSIZE.
IFAIL=6
On entry,Xi<0.0,
orXi>1.0 for some i=1,2,,n.
IFAIL=7
No pairs were found. This will occur if the value of LAG is greater than or equal to the total number of observations.
IFAIL=8
The expected value for each cell is less than or equal to 5.0. This implies that the χ2-distribution may not be a very good approximation to the distribution of the test statistic.

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.

8  Further 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 n, and also depends to some extent on whether the call to G08EBF is an only, first, intermediate or last call.

9  Example

The following program performs the pairs test on 500 pseudorandom numbers. G08EBF is called 5 times with 100 observations on each call. LAG=1 is used and the pairs are tallied into a 5 by 5 matrix.

9.1  Program Text

Program Text (g08ebfe.f90)

9.2  Program Data

Program Data (g08ebfe.d)

9.3  Program Results

Program Results (g08ebfe.r)


G08EBF (PDF version)
G08 Chapter Contents
G08 Chapter Introduction
NAG Library Manual

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