nag_runs_test (g08eac) (PDF version)
g08 Chapter Contents
g08 Chapter Introduction
NAG Library Manual

NAG Library Function Document

nag_runs_test (g08eac)

+ Contents

    1  Purpose
    7  Accuracy

1  Purpose

nag_runs_test (g08eac) performs a runs up (or a runs down) test on a sequence of observations.

2  Specification

#include <nag.h>
#include <nagg08.h>
void  nag_runs_test (Integer n, const double x[], Integer max_run, Integer *nruns, double *chi, double *df, double *prob, NagError *fail)

3  Description

Runs tests may be used to investigate for trends in a sequence of observations. nag_runs_test (g08eac) computes statistics for the runs up test. If the runs down test is desired then each observation must be multiplied by -1  before nag_runs_test (g08eac) is called with the modified vector of observations.
A run up is a sequence of numbers in increasing order. A run up ends at x k  when x k > x k+1  and the new run then begins at x k+1 . nag_runs_test (g08eac) counts the number of runs up of different lengths. Let c i  denote the number of runs of length i , for i=1,2,,r - 1. The number of runs of length r  or greater is then denoted by c r . An unfinished run at the end of a sequence is not counted. The following is a trivial example.
Suppose we called nag_runs_test (g08eac) with the following sequence:
Then nag_runs_test (g08eac) would have counted the runs up of the following lengths:
When the counting of runs is complete nag_runs_test (g08eac) computes the expected values and covariances of the counts, c i . For the details of the method used see Knuth (1981). An approximate χ 2  statistic with r  degrees of freedom is computed, where
X 2 = c - μ c T Σ c -1 c - μ c
where
The use of the χ 2  distribution as an approximation to the exact distribution of the test statistic improves as the expected values increase.
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 nag_runs_test (g08eac) 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  Arguments

1:     nIntegerInput
On entry: the length of the current sequence of observations, n .
Constraint: n3 .
2:     x[n]const doubleInput
On entry: the sequence of observations.
3:     max_runIntegerInput
On entry: the length of the longest run for which tabulation is desired, r . That is, all runs with length greater than or equal to r  are counted together.
Constraint: max_run1  and max_run<n .
4:     nrunsInteger *Output
On exit: the number of runs actually found.
5:     chidouble *Output
On exit: contains the approximate χ 2  test statistic, X 2 .
6:     dfdouble *Output
On exit: contains the degrees of freedom of the χ 2  statistic.
7:     probdouble *Output
On exit: contains the upper tail probability corresponding to the χ 2  test statistic, i.e., the significance level.
8:     failNagError *Input/Output
The NAG error argument (see Section 3.6 in the Essential Introduction).

6  Error Indicators and Warnings

NE_2_INT_ARG_GE
On entry, max_run=value  while n=value . These arguments must satisfy max_run<n .
NE_ALLOC_FAIL
Dynamic memory allocation failed.
NE_G08EA_COVAR
Internally computed covariance matrix is not positive definite. This may be because the value of max_run is too large relative to the full length of the series. Thus the approximate χ 2  test statistic cannot be computed.
NE_G08EA_RUNS
The number of runs requested were not found. All statistics are still computed and the information returned may still be of use.
NE_G08EA_RUNS_LENGTH
The total length of the runs found is less than max_run.
NE_G08EA_TIE
There is a tie in the sequence of observations.
NE_INT_ARG_LT
On entry, max_run must not be less than 1: max_run=value .
On entry, n=value.
Constraint: n3.
NE_INTERNAL_ERROR
An internal error has occurred in this function. Check the function call and any array sizes. If the call is correct then please contact NAG for assistance.

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  Parallelism and Performance

Not applicable.

9  Further Comments

The time taken by nag_runs_test (g08eac) increases with the number of observations n .

10  Example

The following program performs a runs up test on 10000 pseudorandom numbers taken from a uniform distribution U 0,1 , generated by nag_rand_uniform (g05sqc). All runs of length 6 or more are counted together.

10.1  Program Text

Program Text (g08eace.c)

10.2  Program Data

None.

10.3  Program Results

Program Results (g08eace.r)


nag_runs_test (g08eac) (PDF version)
g08 Chapter Contents
g08 Chapter Introduction
NAG Library Manual

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