NAG Library Routine Document
g08baf
(test_mooddavid)
1
Purpose
g08baf performs Mood's and David's tests for dispersion differences between two independent samples of possibly unequal size.
2
Specification
Fortran Interface
Integer, Intent (In) | :: |
n,
n1,
itest | Integer, Intent (Inout) | :: |
ifail | Real (Kind=nag_wp), Intent (In) | :: |
x(n) | Real (Kind=nag_wp), Intent (Out) | :: |
r(n),
w,
v,
pw,
pv |
|
C Header Interface
#include nagmk26.h
void |
g08baf_ (
const double x[],
const Integer *n,
const Integer *n1,
double r[],
const Integer *itest,
double *w,
double *v,
double *pw,
double *pv,
Integer *ifail) |
|
3
Description
Mood's and David's tests investigate the difference between the dispersions of two independent samples of sizes
and
, denoted by
and
The hypothesis under test,
, 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
(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
be denoted by
, for
.
(a) |
Mood's test.
The test statistic is found.
is the sum of squared deviations from the average rank in the pooled sample. For large , approaches normality, and so an approximation, , to the probability of observing not greater than the computed value, may be found.
g08baf returns and 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 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
where
For large , approaches normality, enabling an approximate probability to be computed, similarly to .
g08baf returns and 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 when is true; typically is a small quantity such as or ).
The returned value
(
or
) can be used to perform a significance test, against various alternative hypotheses
, as follows.
(i) |
: dispersions are unequal. is rejected if . |
(ii) |
: dispersion of sample dispersion of sample . is rejected if . |
(iii) |
: dispersion of sample dispersion of sample . is rejected if . |
4
References
Cooper B E (1975) Statistics for Experimentalists Pergamon Press
5
Arguments
- 1: – Real (Kind=nag_wp) arrayInput
-
On entry: the first
elements of
x must be set to the data values in the first sample, and the next
(
) elements to the data values in the second sample.
- 2: – IntegerInput
-
On entry: the total of the two sample sizes, ().
Constraint:
.
- 3: – IntegerInput
-
On entry: the size of the first sample, .
Constraint:
.
- 4: – Real (Kind=nag_wp) arrayOutput
-
On exit: the ranks
, assigned to the data values , for .
- 5: – IntegerInput
-
On entry: the test(s) to be carried out.
- Both Mood's and David's tests.
- David's test only.
- Mood's test only.
Constraint:
, or .
- 6: – Real (Kind=nag_wp)Output
-
On exit: Mood's test statistic, , if requested.
- 7: – Real (Kind=nag_wp)Output
-
On exit: David's test statistic, , if requested.
- 8: – Real (Kind=nag_wp)Output
-
On exit: the lower tail probability, , corresponding to the value of , if Mood's test was requested.
- 9: – Real (Kind=nag_wp)Output
-
On exit: the lower tail probability, , corresponding to the value of , if David's test was requested.
- 10: – IntegerInput/Output
-
On entry:
ifail must be set to
,
. 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
is recommended. If the output of error messages is undesirable, then the value
is recommended. Otherwise, if you are not familiar with this argument, the recommended value is
.
When the value is used it is essential to test the value of ifail on exit.
On exit:
unless the routine detects an error or a warning has been flagged (see
Section 6).
6
Error Indicators and Warnings
If on entry
or
, explanatory error messages are output on the current error message unit (as defined by
x04aaf).
Errors or warnings detected by the routine:
-
-
-
On entry, | , |
or | . |
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.
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.
Dynamic memory allocation failed.
See
Section 3.7 in How to Use the NAG Library and its Documentation for further information.
7
Accuracy
All computations are believed to be stable. The statistics and should be accurate enough for all practical uses.
8
Parallelism and Performance
g08baf is not threaded in any implementation.
The time taken by g08baf is small, and increases with .
10
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.
10.1
Program Text
Program Text (g08bafe.f90)
10.2
Program Data
Program Data (g08bafe.d)
10.3
Program Results
Program Results (g08bafe.r)