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

NAG Library Routine Document

G08AAF

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

G08AAF performs the Sign test on two related samples of size n.

2  Specification

SUBROUTINE G08AAF ( X, Y, N, ISGN, N1, P, IFAIL)
INTEGER  N, ISGN, N1, IFAIL
REAL (KIND=nag_wp)  X(N), Y(N), P

3  Description

The Sign test investigates the median difference between pairs of scores from two matched samples of size n, denoted by xi,yi, for i=1,2,,n. The hypothesis under test, H0, often called the null hypothesis, is that the medians are the same, and this is to be tested against a one- or two-sided alternative H1 (see below).
G08AAF computes:
(a) the test statistic S, which is the number of pairs for which xi<yi;
(b) the number n1 of non-tied pairs xiyi;
(c) the lower tail probability p corresponding to S (adjusted to allow the complement 1-p to be used in an upper one tailed or a two tailed test). p is the probability of observing a value S if S<12n1, or of observing a value <S if S>12n1, given that H0 is true. If S=12n1, p is set to 0.5.
Suppose that a significance test of a chosen size α is to be performed (i.e., α is the probability of rejecting H0 when H0 is true; typically α is a small quantity such as 0.05 or 0.01). The returned value of p can be used to perform a significance test on the median difference, against various alternative hypotheses H1, as follows
(i) H1: median of x median of y. H0 is rejected if 2 × minp,1-p < α .
(ii) H1: median of x> median of y. H0 is rejected if p<α.
(iii) H1: median of x< median of y. H0 is rejected if 1-p<α.

4  References

Siegel S (1956) Non-parametric Statistics for the Behavioral Sciences McGraw–Hill

5  Parameters

1:     XN – REAL (KIND=nag_wp) arrayInput
2:     YN – REAL (KIND=nag_wp) arrayInput
On entry: Xi and Yi must be set to the ith pair of data values, xi,yi, for i=1,2,,n.
3:     N – INTEGERInput
On entry: n, the size of each sample.
Constraint: N1.
4:     ISGN – INTEGEROutput
On exit: the Sign test statistic, S.
5:     N1 – INTEGEROutput
On exit: the number of non-tied pairs, n1.
6:     P – REAL (KIND=nag_wp)Output
On exit: the lower tail probability, p, corresponding to S.
7:     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,N<1.
IFAIL=2
N1=0, i.e., the samples are identical.
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 tail probability, p, is computed using the relationship between the binomial and beta distributions. For n1<120, p should be accurate to at least 4 significant figures, assuming that the machine has a precision of 7 or more digits. For n1120, p should be computed with an absolute error of less than 0.005. For further details see G01EEF.

8  Parallelism and Performance

Not applicable.

9  Further Comments

The time taken by G08AAF is small, and increases with n.

10  Example

This example is taken from page 69 of Siegel (1956). The data relates to ratings of ‘insight into paternal discipline’ for 17 sets of parents, recorded on a scale from 1 to 5.

10.1  Program Text

Program Text (g08aafe.f90)

10.2  Program Data

Program Data (g08aafe.d)

10.3  Program Results

Program Results (g08aafe.r)


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

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