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

NAG Library Routine Document

G08AGF

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

G08AGF performs the Wilcoxon signed rank test on a single sample of size n.

2  Specification

SUBROUTINE G08AGF ( N, X, XME, TAIL, ZER, W, WNOR, P, N1, WRK, IFAIL)
INTEGER  N, N1, IFAIL
REAL (KIND=nag_wp)  X(N), XME, W, WNOR, P, WRK(3*N)
CHARACTER(1)  TAIL, ZER

3  Description

The Wilcoxon one-sample signed rank test may be used to test whether a particular sample came from a population with a specified median. It is assumed that the population distribution is symmetric. The data consists of a single sample of n observations denoted by x1,x2,,xn. This sample may arise from the difference between pairs of observations from two matched samples of equal size taken from two populations, in which case the test may be used to test whether the median of the first population is the same as that of the second population.
The hypothesis under test, H0, often called the null hypothesis, is that the median is equal to some given value Xmed, 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 parameter TAIL in Section 5).
The Wilcoxon test differs from the Sign test (see G08AAF) in that the magnitude of the scores is taken into account, rather than simply the direction of such scores.
The test procedure is as follows
(a) For each xi, for i=1,2,,n, the signed difference di=xi-Xmed is found, where Xmed is a given test value for the median of the sample.
(b) The absolute differences di are ranked with rank ri and any tied values of di are assigned the average of the tied ranks. You may choose whether or not to ignore any cases where di=0 by removing them before or after ranking (see the description of the parameter ZER in Section 5).
(c) The number of nonzero di is found.
(d) To each rank is affixed the sign of the di to which it corresponds. Let si=signdiri.
(e) The sum of the positive-signed ranks, W=si>0si=i=1nmaxsi,0.0, is calculated.
G08AGF returns
(a) the test statistic W;
(b) the number n1 of nonzero di;
(c) the approximate Normal test statistic z, where
z= W- n1n1+14-signW- n1n1+14 × 12 14i=1nsi2 ;  
(d) the tail probability, p, corresponding to W, depending on the choice of the alternative hypothesis, H1.
If n180, p is computed exactly; otherwise, an approximation to p is returned based on an approximate Normal statistic corrected for continuity according to the tail specified.
The value of p can be used to perform a significance test on the median against the alternative hypothesis. 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  Parameters

1:     N – INTEGERInput
On entry: n, the size of the sample.
Constraint: N1.
2:     XN – REAL (KIND=nag_wp) arrayInput
On entry: the sample observations, x1,x2,,xn.
3:     XME – REAL (KIND=nag_wp)Input
On entry: the median test value, Xmed.
4:     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: population median Xmed.
TAIL='U'
An upper tailed probability is calculated and the alternative hypothesis is H1: population median >Xmed.
TAIL='L'
A lower tailed probability is calculated and the alternative hypothesis is H1: population median <Xmed.
Constraint: TAIL='T', 'U' or 'L'.
5:     ZER – CHARACTER(1)Input
On entry: indicates whether or not to include the cases where di=0.0 in the ranking of the di's.
ZER='Y'
All di=0.0 are included when ranking.
ZER='N'
All di=0.0, are ignored, that is all cases where di=0.0 are removed before ranking.
Constraint: ZER='Y' or 'N'.
6:     W – REAL (KIND=nag_wp)Output
On exit: the Wilcoxon rank sum statistic, W, being the sum of the positive ranks.
7:     WNOR – 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 parameter TAIL.
9:     N1 – INTEGEROutput
On exit: the number of nonzero di's, n1.
10:   WRK3×N – REAL (KIND=nag_wp) arrayWorkspace
11:   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,TAIL'T', 'U' or 'L'.
orZER'Y' or 'N'.
IFAIL=2
On entry,N<1.
IFAIL=3
The whole sample is identical to the given median test value.
IFAIL=-99
An unexpected error has been triggered by this routine. Please contact NAG.
See Section 3.8 in the Essential Introduction for further information.
IFAIL=-399
Your licence key may have expired or may not have been installed correctly.
See Section 3.7 in the Essential Introduction for further information.
IFAIL=-999
Dynamic memory allocation failed.
See Section 3.6 in the Essential Introduction for further information.

7  Accuracy

The approximation used to calculate p when n1>80 will return a value with a relative error of less than 10% for most cases. The error may increase for cases where there are a large number of ties in the sample.

8  Parallelism and Performance

G08AGF is threaded by NAG for parallel execution in multithreaded implementations of the NAG Library.
Please consult the X06 Chapter Introduction for information on how to control and interrogate the OpenMP environment used within this routine. Please also consult the Users' Note for your implementation for any additional implementation-specific information.

9  Further Comments

The time taken by G08AGF increases with n1, until n1>80, from which point on the approximation is used. The time decreases significantly at this point and increases again modestly with n1 for n1>80.

10  Example

This example performs the Wilcoxon signed rank test on two matched samples of size 8, taken from two populations. The distribution of the differences between pairs of observations from the two populations is assumed to be symmetric. The test is used to test whether the medians of the two distributions of the populations are equal or not. The test statistic, the approximate Normal statistic and the two tailed probability are computed and printed.

10.1  Program Text

Program Text (g08agfe.f90)

10.2  Program Data

Program Data (g08agfe.d)

10.3  Program Results

Program Results (g08agfe.r)


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

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