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

NAG Library Routine Document

G08BAF

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

G08BAF performs Mood's and David's tests for dispersion differences between two independent samples of possibly unequal size.

2  Specification

SUBROUTINE G08BAF ( X, N, N1, R, ITEST, W, V, PW, PV, IFAIL)
INTEGER  N, N1, ITEST, IFAIL
REAL (KIND=nag_wp)  X(N), R(N), W, V, PW, PV

3  Description

Mood's and David's tests investigate the difference between the dispersions of two independent samples of sizes n1 and n2, denoted by
x1,x2,,xn1
and
xn1+ 1,xn1+ 2,,xn,   n=n1+n2.
The hypothesis under test, H0, often called the null hypothesis, is that the dispersion difference is zero, and this is to be tested against a one- or two-sided alternative hypothesis H1 (see below).
Both tests are based on the rankings of the sample members within the pooled sample formed by combining both samples. If there is some difference in dispersion, more of the extreme ranks will tend to be found in one sample than in the other.
Let the rank of xi be denoted by ri, for i=1,2,,n.
(a) Mood's test.
The test statistic W=i=1n1 ri- n+12 2 is found.
W is the sum of squared deviations from the average rank in the pooled sample. For large n, W approaches normality, and so an approximation, pw, to the probability of observing W not greater than the computed value, may be found.
G08BAF returns W and pw if Mood's test is selected.
(b) David's test.
The disadvantage of Mood's test is that it assumes that the means of the two samples are equal. If this assumption is unjustified a high value of W could merely reflect the difference in means. David's test reduces this effect by using the variance of the ranks of the first sample about their mean rank, rather than the overall mean rank.
The test statistic for David's test is
V=1n1-1 i=1n1 ri-r- 2
where
r-=i= 1n1rin1.
For large n, V approaches normality, enabling an approximate probability pv to be computed, similarly to pw.
G08BAF returns V and pv if David's test is selected.
Suppose that a significance test of a chosen size α is to be performed (i.e., α is the probability of rejecting H0 when H0 is true; typically α is a small quantity such as 0.05 or 0.01).
The returned value p (=pv or pw) can be used to perform a significance test, against various alternative hypotheses H1, as follows.
(i) H1: dispersions are unequal. H0 is rejected if 2 × minp,1-p < α .
(ii) H1: dispersion of sample 1> dispersion of sample 2. H0 is rejected if 1-p<α.
(iii) H1: dispersion of sample 2> dispersion of sample 1. H0 is rejected if p<α.

4  References

Cooper B E (1975) Statistics for Experimentalists Pergamon Press

5  Parameters

1:     X(N) – REAL (KIND=nag_wp) arrayInput
On entry: the first n1 elements of X must be set to the data values in the first sample, and the next n2 (=N-n1) elements to the data values in the second sample.
2:     N – INTEGERInput
On entry: the total of the two sample sizes, n (=n1+n2).
Constraint: N>2.
3:     N1 – INTEGERInput
On entry: the size of the first sample, n1.
Constraint: 1<N1<N.
4:     R(N) – REAL (KIND=nag_wp) arrayOutput
On exit: the ranks ri, assigned to the data values xi, for i=1,2,,n.
5:     ITEST – INTEGERInput
On entry: the test(s) to be carried out.
ITEST=0
Both Mood's and David's tests.
ITEST=1
David's test only.
ITEST=2
Mood's test only.
Constraint: ITEST=0, 1 or 2.
6:     W – REAL (KIND=nag_wp)Output
On exit: Mood's test statistic, W, if requested.
7:     V – REAL (KIND=nag_wp)Output
On exit: David's test statistic, V, if requested.
8:     PW – REAL (KIND=nag_wp)Output
On exit: the lower tail probability, pw, corresponding to the value of W, if Mood's test was requested.
9:     PV – REAL (KIND=nag_wp)Output
On exit: the lower tail probability, pv, corresponding to the value of V, if David's test was requested.
10:   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, if you are not familiar with this parameter, 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,N2.
IFAIL=2
On entry,N11,
orN1N.
IFAIL=3
On entry,ITEST<0,
orITEST>2.

7  Accuracy

All computations are believed to be stable. The statistics V and W should be accurate enough for all practical uses.

8  Further Comments

The time taken by G08BAF is small, and increases with n.

9  Example

This example is taken from page 280 of Cooper (1975). The data consists of two samples of six observations each. Both Mood's and David's test statistics and significances are computed. Note that Mood's statistic is inflated owing to the difference in location of the two samples, the median ranks differing by a factor of two.

9.1  Program Text

Program Text (g08bafe.f90)

9.2  Program Data

Program Data (g08bafe.d)

9.3  Program Results

Program Results (g08bafe.r)


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

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