hide long namesshow long names
hide short namesshow short names
Integer type:  int32  int64  nag_int  show int32  show int32  show int64  show int64  show nag_int  show nag_int

PDF version (NAG web site, 64-bit version, 64-bit version)
Chapter Contents
Chapter Introduction
NAG Toolbox

NAG Toolbox: nag_nonpar_randtest_pairs (g08eb)

 Contents

    1  Purpose
    2  Syntax
    7  Accuracy
    9  Example

Purpose

nag_nonpar_randtest_pairs (g08eb) performs a pairs test on a sequence of observations in the interval 0,1.

Syntax

[ncount, ex, chi, df, prob, wrk, ifail] = g08eb(cl, x, lag, ncount, wrk, 'n', n, 'msize', msize)
[ncount, ex, chi, df, prob, wrk, ifail] = nag_nonpar_randtest_pairs(cl, x, lag, ncount, wrk, 'n', n, 'msize', msize)

Description

nag_nonpar_randtest_pairs (g08eb) 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.
nag_nonpar_randtest_pairs (g08eb) may be used in two different modes:
(i) a single call to nag_nonpar_randtest_pairs (g08eb) which computes all test statistics after counting the pairs;
(ii) multiple calls to nag_nonpar_randtest_pairs (g08eb) 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 Arguments for details on how to invoke each mode.

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

Parameters

Compulsory Input Parameters

1:     cl – string (length ≥ 1)
Indicates the type of call to nag_nonpar_randtest_pairs (g08eb).
cl='S'
This is the one and only call to nag_nonpar_randtest_pairs (g08eb) (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 function. 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 nag_nonpar_randtest_pairs (g08eb).
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 nag_nonpar_randtest_pairs (g08eb).
cl='L'
This is the last call to nag_nonpar_randtest_pairs (g08eb). The test statistics are computed after the final counting of runs is complete.
Constraint: cl='S', 'F', 'I' or 'L'.
2:     xn – double array
The sequence of observations.
Constraint: 0.0xi1.0, for i=1,2,,n.
3:     lag int64int32nag_int scalar
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 nag_nonpar_randtest_pairs (g08eb).
Constraints:
  • lag1;
  • if cl='S', lag<n.
4:     ncountldcmsize int64int32nag_int array
ldc, the first dimension of the array, must satisfy the constraint ldcmsize.
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 nag_nonpar_randtest_pairs (g08eb).
5:     wrk2×lag – double array
wrk is used to store information between successive calls to nag_nonpar_randtest_pairs (g08eb) and therefore must not be changed.

Optional Input Parameters

1:     n int64int32nag_int scalar
Default: the dimension of the array x.
n, the number of observations.
Constraints:
  • if cl='S', n2;
  • otherwise n1.
2:     msize int64int32nag_int scalar
Default: the first dimension of the array ncount and the second dimension of the array ncount. (An error is raised if these dimensions are not equal.)
m, the size of the matrix of counts.
msize must not be changed between calls to nag_nonpar_randtest_pairs (g08eb).
Constraint: msize2.

Output Parameters

1:     ncountldcmsize int64int32nag_int array
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.
2:     ex – double scalar
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.
3:     chi – double scalar
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.
4:     df – double scalar
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.
5:     prob – double scalar
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.
6:     wrk2×lag – double array
7:     ifail int64int32nag_int scalar
ifail=0 unless the function detects an error (see Error Indicators and Warnings).

Error Indicators and Warnings

Note: nag_nonpar_randtest_pairs (g08eb) may return useful information for one or more of the following detected errors or warnings.
Errors or warnings detected by the function:

Cases prefixed with W are classified as warnings and do not generate an error of type NAG:error_n. See nag_issue_warnings.

   ifail=1
On entry, cl=_.
Constraint: cl='S', 'F', 'I' or 'L'.
   ifail=2
Constraint: if cl='S', n2, otherwise n1.
   ifail=3
Constraint: msize2 
   ifail=4
Constraint: lag>0 and if cl='S', lag<n.
   ifail=5
Constraint: ldcmsize.
   ifail=6
On entry, at least one element of x is out of range.
Constraint: 0xi1, for 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.
W  ifail=8
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 5.0.
   ifail=-99
An unexpected error has been triggered by this routine. Please contact NAG.
   ifail=-399
Your licence key may have expired or may not have been installed correctly.
   ifail=-999
Dynamic memory allocation failed.

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.

Further Comments

If after forming the pairs in an initial or intermediate call to nag_nonpar_randtest_pairs (g08eb) 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 nag_nonpar_randtest_pairs (g08eb). Clearly an observation left over from an only or final call to nag_nonpar_randtest_pairs (g08eb) is ignored.
The time taken by the function increases with the number of observations n, and also depends to some extent on whether the call to nag_nonpar_randtest_pairs (g08eb) is an only, first, intermediate or last call.

Example

The following program performs the pairs test on 500 pseudorandom numbers. nag_nonpar_randtest_pairs (g08eb) 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.
function g08eb_example


fprintf('g08eb example results\n\n');

% Initialize the base generator to a repeatable sequence
seed = [int64(324213)];
genid = int64(1);
subid = int64(1);
[state, ifail] = g05kf( ...
                        genid, subid, seed);

lag = int64(1);
wrk = zeros(2*lag, 1);
m   = 5;
ncount = zeros(m, m, 'int64');
n      = int64(100);
nsampl = 5;
cl     = 'F';

for i=1:nsampl
  % Generate a sample from U(0,1)
  [state, x, ifail] = g05sq( ...
                             n, 0, 1, state);
  % Process the sample
  [ncount, ex, chi, df, prob, wrk, ifail] = ...
  g08eb( ...
         cl, x, lag, ncount, wrk);

  % Adjust CL
  cl = 'I';
  if i==nsampl-1
     cl = 'L';
  end
end

[ifail] = x04ea( ...
                 'General', ' ', ncount, 'Count matrix');
fprintf('\nExpected value = %8.2f\n', ex);
fprintf('Chisq          = %10.4f\n', chi);
fprintf('DF             = %7.1f\n', df);
fprintf('Probability    = %10.4f\n', prob);


g08eb example results

 Count matrix
     1  2  3  4  5
 1   7 10  5 16  8
 2   9 10  7  6  8
 3  13 15 10 10 12
 4  10 21  7  5 13
 5  13  5 10 12  8

Expected value =    10.00
Chisq          =    34.8000
DF             =    24.0
Probability    =     0.0714

PDF version (NAG web site, 64-bit version, 64-bit version)
Chapter Contents
Chapter Introduction
NAG Toolbox

© The Numerical Algorithms Group Ltd, Oxford, UK. 2009–2015