The routine may be called by the names g08agf or nagf_nonpar_test_wilcoxon.
3Description
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 observations denoted by . 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, , often called the null hypothesis, is that the median is equal to some given value , and this is to be tested against an alternative hypothesis which is
: population median ; or
: population median ; or
: population median ,
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).
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 , for , the signed difference is found, where is a given test value for the median of the sample.
(b)The absolute differences are ranked with rank and any tied values of are assigned the average of the tied ranks. You may choose whether or not to ignore any cases where by removing them before or after ranking (see the description of the argument zer in Section 5).
(c)The number of nonzero is found.
(d)To each rank is affixed the sign of the to which it corresponds. Let .
(e)The sum of the positive-signed ranks, , is calculated.
g08agf returns
(a)the test statistic ;
(b)the number of nonzero ;
(c)the approximate Normal test statistic , where
(d)the tail probability, , corresponding to , depending on the choice of the alternative hypothesis, .
If , is computed exactly; otherwise, an approximation to is returned based on an approximate Normal statistic corrected for continuity according to the tail specified.
The value of 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 when is true). If then the null hypothesis is rejected. Typically might be or .
4References
Conover W J (1980) Practical Nonparametric Statistics Wiley
Neumann N (1988) Some procedures for calculating the distributions of elementary nonparametric teststatistics Statistical Software Newsletter14(3) 120–126
Siegel S (1956) Non-parametric Statistics for the Behavioral Sciences McGraw–Hill
5Arguments
1: – IntegerInput
On entry: , the size of the sample.
Constraint:
.
2: – Real (Kind=nag_wp) arrayInput
On entry: the sample observations, .
3: – Real (Kind=nag_wp)Input
On entry: the median test value, .
4: – Character(1)Input
On entry: indicates the choice of tail probability, and hence the alternative hypothesis.
A two tailed probability is calculated and the alternative hypothesis is : population median .
An upper tailed probability is calculated and the alternative hypothesis is : population median .
A lower tailed probability is calculated and the alternative hypothesis is : population median .
Constraint:
, or .
5: – Character(1)Input
On entry: indicates whether or not to include the cases where in the ranking of the s.
All are included when ranking.
All , are ignored, that is all cases where are removed before ranking.
Constraint:
or .
6: – Real (Kind=nag_wp)Output
On exit: the Wilcoxon rank sum statistic, , being the sum of the positive ranks.
7: – Real (Kind=nag_wp)Output
On exit: the approximate Normal test statistic, , as described in Section 3.
8: – Real (Kind=nag_wp)Output
On exit: the tail probability, , as specified by the argument tail.
9: – IntegerOutput
On exit: the number of nonzero 's, .
10: – Real (Kind=nag_wp) arrayWorkspace
11: – IntegerInput/Output
On entry: ifail must be set to , or to set behaviour on detection of an error; these values have no effect when no error is detected.
A value of causes the printing of an error message and program execution will be halted; otherwise program execution continues. A value of means that an error message is printed while a value of means that it is not.
If halting is not appropriate, the value or is recommended. If message printing is undesirable, then the value is recommended. Otherwise, the value is recommended. When the value or 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).
6Error 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, .
Constraint: , or .
On entry, .
Constraint: or .
On entry, .
Constraint: .
All elements of the sample are equal to xme, i.e., .
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.
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.
Dynamic memory allocation failed.
See Section 9 in the Introduction to the NAG Library FL Interface for further information.
7Accuracy
The approximation used to calculate when will return a value with a relative error of less than for most cases. The error may increase for cases where there are a large number of ties in the sample.
8Parallelism and Performance
Background information to multithreading can be found in the Multithreading documentation.
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.
9Further Comments
The time taken by g08agf increases with , until , from which point on the approximation is used. The time decreases significantly at this point and increases again modestly with for .
10Example
This example performs the Wilcoxon signed rank test on two matched samples of size , 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.