NAG Library Routine Document

g08alf  (test_cochranq)

 Contents

    1  Purpose
    7  Accuracy

1
Purpose

g08alf performs the Cochran Q-test on cross-classified binary data.

2
Specification

Fortran Interface
Subroutine g08alf ( n, k, x, ldx, q, prob, ifail)
Integer, Intent (In):: n, k, ldx
Integer, Intent (Inout):: ifail
Real (Kind=nag_wp), Intent (In):: x(ldx,k)
Real (Kind=nag_wp), Intent (Out):: q, prob
C Header Interface
#include nagmk26.h
void  g08alf_ ( const Integer *n, const Integer *k, const double x[], const Integer *ldx, double *q, double *prob, Integer *ifail)

3
Description

Cochran's Q-test may be used to test for differences between k treatments applied independently to n individuals or blocks (k related samples of equal size n), where the observed response can take only one of two possible values; for example a treatment may result in a ‘success’ or ‘failure’. The data is recorded as either 1 or 0 to represent this dichotomization.
The use of this ‘randomized block design’ allows the effect of differences between the blocks to be separated from the differences between the treatments. The test assumes that the blocks were randomly selected from all possible blocks and that the result may be one of two possible outcomes common to all treatments within blocks.
The null and alternative hypotheses to be tested may be stated as follows.
H0 :the treatments are equally effective, that is the probability of obtaining a 1 within a block is the same for each treatment.
H1 :there is a difference between the treatments, that is the probability of obtaining a 1 is not the same for different treatments within blocks.
The data is often represented in the form of a table with the n rows representing the blocks and the k columns the treatments. Let Ri represent the row totals, for i=1,2,,n, and Cj represent the column totals, for j=1,2,,k. Let xij represent the response or result where xij=0​ or ​1.
  Treatments  
Blocks 1 2   k Row Totals
1 x11 x12 x1k R1
2 x21 x22 x2k R2
     
n xn1 xn2 xnk Rn
Column Totals C1 C2   Ck N=Grand Total
If pij=Prxij=1, for i=1,2,,n and j=1,2,,k, then the hypotheses may be restated as follows
H0 :pi1=pi2==pik, for each i=1,2,,n.
H1:pijpik, for some j and k, and for some i.
The test statistic is defined as
Q=kk-1j=1k Cj-Nk 2 i=1nRik-Ri .  
When the number of blocks, n, is large relative to the number of treatments, k, Q has an approximate χ2-distribution with k-1 degrees of freedom. This is used to find the probability, p, of obtaining a statistic greater than or equal to the computed value of Q. Thus p is the upper tail probability associated with the computed value of Q, where the χ2-distribution is used to approximate the true distribution of Q.

4
References

Conover W J (1980) Practical Nonparametric Statistics Wiley
Siegel S (1956) Non-parametric Statistics for the Behavioral Sciences McGraw–Hill

5
Arguments

1:     n – IntegerInput
On entry: n, the number of blocks.
Constraint: n2.
2:     k – IntegerInput
On entry: k, the number of treatments.
Constraint: k2.
3:     xldxk – Real (Kind=nag_wp) arrayInput
On entry: the matrix of observed zero-one data. xij must contain the value xij, for i=1,2,,n and j=1,2,,k.
Constraint: xij=0.0 or 1.0, for i=1,2,,n and j=1,2,,k.
4:     ldx – IntegerInput
On entry: the first dimension of the array x as declared in the (sub)program from which g08alf is called.
Constraint: ldxn.
5:     q – Real (Kind=nag_wp)Output
On exit: the value of the Cochran Q-test statistic.
6:     prob – Real (Kind=nag_wp)Output
On exit: the upper tail probability, p, associated with the Cochran Q-test statistic, that is the probability of obtaining a value greater than or equal to the observed value (the output value of q).
7:     ifail – IntegerInput/Output
On entry: ifail must be set to 0, -1​ or ​1. If you are unfamiliar with this argument you should refer to Section 3.4 in How to Use the NAG Library and its Documentation 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, if you are not familiar with this argument, the recommended value is 0. 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).
Errors or warnings detected by the routine:
ifail=1
On entry,n<2,
ork<2,
orldx<n.
ifail=2
On entry,xij0.0 or 1.0 for some i and j, i=1,2,,n and j=1,2,,k.
ifail=3
The approximation process used to calculate the tail probability has failed to converge. The result returned in prob may still be a reasonable approximation.
ifail=-99
An unexpected error has been triggered by this routine. Please contact NAG.
See Section 3.9 in How to Use the NAG Library and its Documentation for further information.
ifail=-399
Your licence key may have expired or may not have been installed correctly.
See Section 3.8 in How to Use the NAG Library and its Documentation for further information.
ifail=-999
Dynamic memory allocation failed.
See Section 3.7 in How to Use the NAG Library and its Documentation for further information.

7
Accuracy

The use of the χ2-distribution as an approximation to the true distribution of the Cochran Q-test statistic improves as k increases and as n increases relative to k. This approximation should be a reasonable one when the total number of observations left, after omitting those rows containing all 0 or 1, is greater than about 25 and the number of rows left is larger than 5.

8
Parallelism and Performance

g08alf is not threaded in any implementation.

9
Further Comments

None.

10
Example

The following example is taken from page 201 of Conover (1980). The data represents the success of three basketball enthusiasts in predicting the outcome of 12 collegiate basketball games, selected at random, using 1 for successful prediction of the outcome and 0 for unsuccessful prediction. This data is read in and the Cochran Q-test statistic and its corresponding upper tail probability are computed and printed.

10.1
Program Text

Program Text (g08alfe.f90)

10.2
Program Data

Program Data (g08alfe.d)

10.3
Program Results

Program Results (g08alfe.r)

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