NAG FL Interface
g08ahf (test_​mwu)

Settings help

FL Name Style:


FL Specification Language:


1 Purpose

g08ahf performs the Mann–Whitney U test on two independent samples of possibly unequal size.

2 Specification

Fortran Interface
Subroutine g08ahf ( n1, x, n2, y, tail, u, unor, p, ties, ranks, wrk, ifail)
Integer, Intent (In) :: n1, n2
Integer, Intent (Inout) :: ifail
Real (Kind=nag_wp), Intent (In) :: x(n1), y(n2)
Real (Kind=nag_wp), Intent (Out) :: u, unor, p, ranks(n1+n2), wrk(n1+n2)
Logical, Intent (Out) :: ties
Character (1), Intent (In) :: tail
C Header Interface
#include <nag.h>
void  g08ahf_ (const Integer *n1, const double x[], const Integer *n2, const double y[], const char *tail, double *u, double *unor, double *p, logical *ties, double ranks[], double wrk[], Integer *ifail, const Charlen length_tail)
The routine may be called by the names g08ahf or nagf_nonpar_test_mwu.

3 Description

The Mann–Whitney U test investigates the difference between two populations defined by the distribution functions F(x) and G(y) respectively. The data consist of two independent samples of size n1 and n2, denoted by x1,x2,,xn1 and y1,y2,,yn2, taken from the two populations.
The hypothesis under test, H0, often called the null hypothesis, is that the two distributions are the same, that is F(x)=G(x), and this is to be tested against an alternative hypothesis H1 which is 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 H0 in favour of the alternative hypothesis H1: F(x)>G(y) we have evidence to suggest that the location, of the distribution defined by F(x), is less than the location, of the distribution defined by G(y).
The Mann–Whitney U test differs from the Median test (see g08acf) 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 r1i be the rank assigned to xi, i=1,2,,n1 and r2j the rank assigned to yj, j=1,2,,n2. Then the test statistic U is defined as follows;
U=i=1n1r1i-n1(n1+1)2  
U 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).
g08ahf returns:
  1. (a)The test statistic U.
  2. (b)The approximate Normal test statistic,
    z=U-mean(U)±12 var(U)  
    where
    mean(U)=n1n22  
    and
    var(U)=n1n2(n1+n2+1)12-n1n2 (n1+n2)(n1+n2-1) ×TS  
    where
    TS=j= 1 τ(tj)(tj-1)(tj+1)12  
    τ is the number of groups of ties in the sample and tj is the number of ties in the jth group.
    Note that if no ties are present the variance of U reduces to n1n212(n1+n2+1).
  3. (c)An indicator as to whether ties were present in the pooled sample or not.
  4. (d)The tail probability, p, corresponding to U (adjusted to allow the complement to be used in an upper one tailed or a two tailed test), depending on the choice of tail, i.e., the choice of alternative hypothesis, H1. The tail probability returned is an approximation of p is based on an approximate Normal statistic corrected for continuity according to the tail specified. If n1 and n2 are not very large an exact probability may be desired. For the calculation of the exact probability see g08ajf (no ties in the pooled sample) or g08akf (ties in the pooled sample).
    The value of p can be used to perform a significance test on the null hypothesis H0 against the alternative hypothesis H1. Let α be the size of the significance test (that is, α is the probability of rejecting H0 when H0 is true). If p<α 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: n1 Integer Input
On entry: the size of the first sample, n1.
Constraint: n11.
2: x(n1) Real (Kind=nag_wp) array Input
On entry: the first vector of observations, x1,x2,,xn1.
3: n2 Integer Input
On entry: the size of the second sample, n2.
Constraint: n21.
4: y(n2) Real (Kind=nag_wp) array Input
On entry: the second vector of observations. y1,y2,,yn2.
5: tail Character(1) Input
On entry: indicates the choice of tail probability, and hence the alternative hypothesis.
tail='T'
A two tailed probability is calculated and the alternative hypothesis is H1:F(x)G(y).
tail='U'
An upper tailed probability is calculated and the alternative hypothesis H1:F(x)<G(y), i.e., the x's tend to be greater than the y's.
tail='L'
A lower tailed probability is calculated and the alternative hypothesis H1:F(x)>G(y), i.e., the x's tend to be less than the y's.
Constraint: tail='T', 'U' or 'L'.
6: u Real (Kind=nag_wp) Output
On exit: the Mann–Whitney rank sum statistic, U.
7: unor Real (Kind=nag_wp) Output
On exit: the approximate Normal test statistic, z, as described in Section 3.
8: p Real (Kind=nag_wp) Output
On exit: the tail probability, p, as specified by the argument tail.
9: ties Logical Output
On exit: indicates whether the pooled sample contained ties or not. This will be useful in checking which routine to use should one wish to calculate an exact tail probability.
ties=.FALSE., no ties were present (use g08ajf for an exact probability).
ties=.TRUE., ties were present (use g08akf for an exact probability).
10: ranks(n1+n2) Real (Kind=nag_wp) array Output
On exit: contains the ranks of the pooled sample. The ranks of the first sample are contained in the first n1 elements and those of the second sample are contained in the next n2 elements.
11: wrk(n1+n2) Real (Kind=nag_wp) array Workspace
12: ifail Integer Input/Output
On entry: ifail must be set to 0, −1 or 1 to set behaviour on detection of an error; these values have no effect when no error is detected.
A value of 0 causes the printing of an error message and program execution will be halted; otherwise program execution continues. A value of −1 means that an error message is printed while a value of 1 means that it is not.
If halting is not appropriate, the value −1 or 1 is recommended. If message printing is undesirable, then the value 1 is recommended. Otherwise, the value 0 is recommended. 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, n1=value.
Constraint: n11.
On entry, n2=value.
Constraint: n21.
ifail=2
On entry, tail=value.
Constraint: tail='T', 'U' or 'L'.
ifail=3
The pooled sample values are all the same, i.e., the variance of u=0.0.
ifail=-99
An unexpected error has been triggered by this routine. Please contact NAG.
See Section 7 in the Introduction to the NAG Library FL Interface for further information.
ifail=-399
Your licence key may have expired or may not have been installed correctly.
See Section 8 in the Introduction to the NAG Library FL Interface for further information.
ifail=-999
Dynamic memory allocation failed.
See Section 9 in the Introduction to the NAG Library FL Interface for further information.

7 Accuracy

The approximate tail probability, p, returned by g08ahf is a good approximation to the exact probability for cases where max(n1,n2)30 and (n1+n2)40. The relative error of the approximation should be less than 10%, for most cases falling in this range.

8 Parallelism and Performance

g08ahf is not threaded in any implementation.

9 Further Comments

The time taken by g08ahf increases with n1 and n2.

10 Example

This example 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 (g08ahfe.f90)

10.2 Program Data

Program Data (g08ahfe.d)

10.3 Program Results

Program Results (g08ahfe.r)