NAG Library Function Document
nag_mann_whitney (g08amc)
1
Purpose
nag_mann_whitney (g08amc) performs the Mann–Whitney test on two independent samples of possibly unequal size and calculates the exact probability for the Mann–Whitney rank sum test statistic for the case where there are either ties or no ties in the samples pooled together.
2
Specification
#include <nag.h> |
#include <nagg08.h> |
void |
nag_mann_whitney (Integer n1,
const double x[],
Integer n2,
const double y[],
Nag_TailProbability tail,
Nag_CompProb exact,
double *u,
double *z,
double *p,
NagError *fail) |
|
3
Description
The Mann–Whitney test investigates the difference between two populations defined by the distribution functions and respectively. The data consist of two independent samples of size and , denoted by and , taken from the two populations.
The hypothesis under test,
, often called the null hypothesis, is that the two distributions are the same, that is
, and this is to be tested against an alternative hypothesis
which is
- : ; or
- : , i.e., the 's tend to be greater than the 's; or
- : , i.e., the 's tend to be less than the 's,
using a two tailed, upper tailed or lower tailed probability respectively. You select the alternative hypothesis by choosing the appropriate tail probability to be computed (see the description of argument
tail in
Section 5).
Note that when using this test to test for differences in the distributions one is primarily detecting differences in the location of the two distributions. That is to say, if we reject the null hypothesis in favour of the alternative hypothesis : we have evidence to suggest that the location, of the distribution defined by , is less than the location, of the distribution defined by .
The Mann–Whitney
test differs from the Median test (see
nag_median_test (g08acc)) in that the ranking of the individual scores within the pooled sample is taken into account, rather than simply the position of a score relative to the median of the pooled sample. It is therefore a more powerful test if score differences are meaningful.
The test procedure involves ranking the pooled sample, average ranks being used for ties. Let
be the rank assigned to
, for
and
the rank assigned to
, for
. Then the test statistic
is defined as follows;
is also the number of times a score in the second sample precedes a score in the first sample (where we only count a half if a score in the second sample actually equals a score in the first sample).
nag_mann_whitney (g08amc) returns:
(a) |
the test statistic ; |
(b) |
the approximate Normal test statistic,
where
and
where
is the number of groups of ties in the sample and is the number of ties in the th group.
Note that if no ties are present the variance of reduces to . |
(c) |
An indicator as to whether ties were present in the pooled sample or not. |
(d) |
The tail probability, , corresponding to , depending on the choice of tail, i.e., the choice of alternative hypothesis, . An exact probability or a normal approximation may be selected using the exact option. For large values of and the normal approximation should be adequate while the exact computation may require extensive calculation, particularly in cases where there are ties in the observations. For small samples the exact probability should be used.
The value of can be used to perform a significance test on the null hypothesis against the alternative hypothesis . Let be the size of the significance test (that is, is the probability of rejecting when is true). If then the null hypothesis is rejected. Typically might be 0.05 or 0.01. |
4
References
Conover W J (1980) Practical Nonparametric Statistics Wiley
Neumann N (1988) Some procedures for calculating the distributions of elementary nonparametric teststatistics Statistical Software Newsletter 14(3) 120–126
Siegel S (1956) Non-parametric Statistics for the Behavioral Sciences McGraw–Hill
5
Arguments
- 1:
– IntegerInput
-
On entry: the number of non-tied pairs, .
Constraint:
.
- 2:
– const doubleInput
-
On entry: the first vector of observations. .
- 3:
– IntegerInput
-
On entry: the size of the second sample, .
Constraint:
.
- 4:
– const doubleInput
-
On entry: the second vector of observations. .
- 5:
– Nag_TailProbabilityInput
-
On entry: indicates the choice of tail probability, and hence the alternative hypothesis.
- A two tailed probability is calculated and the alternative hypothesis is .
- An upper tailed probability is calculated and the alternative hypothesis , i.e., the 's tend to be greater than the 's.
- A lower tailed probability is calculated and the alternative hypothesis , i.e., the 's tend to be less than the 's.
Constraint:
, or .
- 6:
– Nag_CompProbInput
-
On entry: indicates if exact probability,
, is to be computed.
- Compute the exact probability.
- Compute the approximate probability.
Constraint:
or .
- 7:
– double *Output
-
On exit: the Mann–Whitney rank sum statistic, .
- 8:
– double *Output
-
On exit: the approximate Normal test statistic,
, as described in
Section 3.
- 9:
– double *Output
-
On exit: the exact tail probability,
, as specified by the argument
tail.
- 10:
– NagError *Input/Output
-
The NAG error argument (see
Section 3.7 in How to Use the NAG Library and its Documentation).
6
Error Indicators and Warnings
- NE_ALLOC_FAIL
-
Dynamic memory allocation failed.
- NE_BAD_PARAM
-
On entry, argument
exact had an illegal value.
On entry, argument
tail had an illegal value.
- NE_G08AH_SAMP_IDEN
-
The pooled samples are all the same, that is the variance of .
- NE_INT_ARG_LT
-
On entry,
n1 must not be less than 1:
.
On entry,
n2 must not be less than 1:
.
- 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.
- NE_MANN_WHITNEY_STAT
-
The computed Mann–Whitney statistic, . If the exact tail probability is to be computed, then .
7
Accuracy
The approximate tail probability, , returned by nag_mann_whitney (g08amc) is a good approximation to the exact probability for cases where and . The relative error of the approximation should be less than 10 percent, for most cases falling in this range.
8
Parallelism and Performance
nag_mann_whitney (g08amc) is not threaded in any implementation.
The time taken by nag_mann_whitney (g08amc) increases with and .
10
Example
The example program performs the Mann–Whitney test on two independent samples of sizes 16 and 23 respectively. This is used to test the null hypothesis that the distributions of the two populations from which the samples were taken are the same against the alternative hypothesis that the distributions are different. The test statistic, the approximate Normal statistic and the approximate two-tail probability are printed. An exact tail probability is also calculated and printed depending on whether ties were found in the pooled sample or not.
10.1
Program Text
Program Text (g08amce.c)
10.2
Program Data
Program Data (g08amce.d)
10.3
Program Results
Program Results (g08amce.r)