NAG Library Routine Document

g02bpf (coeffs_kspearman_miss_case_overwrite)

1
Purpose

g02bpf computes Kendall and/or Spearman nonparametric rank correlation coefficients for a set of data omitting completely any cases with a missing observation for any variable; the data array is overwritten with the ranks of the observations.

2
Specification

Fortran Interface
Subroutine g02bpf ( n, m, x, ldx, miss, xmiss, itype, rr, ldrr, ncases, incase, kworka, kworkb, kworkc, work1, work2, ifail)
Integer, Intent (In):: n, m, ldx, itype, ldrr
Integer, Intent (Inout):: miss(m), ifail
Integer, Intent (Out):: ncases, incase(n), kworka(n), kworkb(n), kworkc(n)
Real (Kind=nag_wp), Intent (Inout):: x(ldx,m), xmiss(m), rr(ldrr,m)
Real (Kind=nag_wp), Intent (Out):: work1(m), work2(m)
C Header Interface
#include <nagmk26.h>
void  g02bpf_ (const Integer *n, const Integer *m, double x[], const Integer *ldx, Integer miss[], double xmiss[], const Integer *itype, double rr[], const Integer *ldrr, Integer *ncases, Integer incase[], Integer kworka[], Integer kworkb[], Integer kworkc[], double work1[], double work2[], Integer *ifail)

3
Description

The input data consists of n observations for each of m variables, given as an array
xij ,   i = 1,2,,n   n2 , j = 1,2,,m   m2 ,  
where xij is the ith observation on the jth variable. In addition, each of the m variables may optionally have associated with it a value which is to be considered as representing a missing observation for that variable; the missing value for the jth variable is denoted by xmj. Missing values need not be specified for all variables.
Let wi=0 if observation i contains a missing value for any of those variables for which missing values have been declared; i.e., if xij=xmj for any j for which an xmj has been assigned (see also Section 7); and wi=1 otherwise, for i=1,2,,n.
The quantities calculated are:
(a) Ranks
For a given variable, j say, each of the observations xij for which wi=1, for i=1,2,,n, has associated with it an additional number, the ‘rank’ of the observation, which indicates the magnitude of that observation relative to the magnitudes of the other observations on that same variable for which wi=1.
The smallest of these valid observations for variable j is assigned the rank 1, the second smallest observation for variable j the rank 2, the third smallest the rank 3, and so on until the largest such observation is given the rank nc, where nc=i=1nwi.
If a number of cases all have the same value for the given variable, j, then they are each given an ‘average’ rank, e.g., if in attempting to assign the rank h+1, k observations for which wi=1 were found to have the same value, then instead of giving them the ranks
h+1,h+2,,h+k,  
all k observations would be assigned the rank
2h+k+12  
and the next value in ascending order would be assigned the rank
h+k+ 1.  
The process is repeated for each of the m variables.
Let yij be the rank assigned to the observation xij when the jth variable is being ranked. For those observations, i, for which wi=0, yij=0, for j=1,2,,m.
The actual observations xij are replaced by the ranks yij, for i=1,2,,n and j=1,2,,m.
(b) Nonparametric rank correlation coefficients
(i) Kendall's tau:
Rjk=h=1ni=1nwhwisignyhj-yijsignyhk-yik ncnc-1-Tjncnc-1-Tk ,  j,k=1,2,,m,  
where nc=i=1nwi
and signu=1 if u>0
signu=0 if u=0
signu=-1 if u<0
and Tj=tjtj-1 where tj is the number of ties of a particular value of variable j, and the summation is over all tied values of variable j.
(ii) Spearman's:
Rjk*=ncnc2-1-6i=1nwi yij-yik 2-12Tj*+Tk* ncnc2-1-Tj*ncnc2-1-Tk* ,  j,k=1,2,,m,  
where nc=i=1nwi 
and Tj*=tjtj2-1 where tj is the number of ties of a particular value of variable j, and the summation is over all tied values of variable j.

4
References

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

5
Arguments

1:     n – IntegerInput
On entry: n, the number of observations or cases.
Constraint: n2.
2:     m – IntegerInput
On entry: m, the number of variables.
Constraint: m2.
3:     xldxm – Real (Kind=nag_wp) arrayInput/Output
On entry: xij must be set to xij, the value of the ith observation on the jth variable, for i=1,2,,n and j=1,2,,m.
On exit: xij contains the rank yij of the observation xij, for i=1,2,,n and j=1,2,,m. (For those observations containing missing values, and therefore excluded from the calculation, yij=0, for j=1,2,,m.)
4:     ldx – IntegerInput
On entry: the first dimension of the array x as declared in the (sub)program from which g02bpf is called.
Constraint: ldxn.
5:     missm – Integer arrayInput/Output
On entry: missj must be set to 1 if a missing value, xmj, is to be specified for the jth variable in the array x, or set equal to 0 otherwise. Values of miss must be given for all m variables in the array x.
On exit: the array miss is overwritten by the routine, and the information it contained on entry is lost.
6:     xmissm – Real (Kind=nag_wp) arrayInput/Output
On entry: xmissj must be set to the missing value, xmj, to be associated with the jth variable in the array x, for those variables for which missing values are specified by means of the array miss (see Section 7).
On exit: the array xmiss is overwritten by the routine, and the information it contained on entry is lost.
7:     itype – IntegerInput
On entry: the type of correlation coefficients which are to be calculated.
itype=-1
Only Kendall's tau coefficients are calculated.
itype=0
Both Kendall's tau and Spearman's coefficients are calculated.
itype=1
Only Spearman's coefficients are calculated.
Constraint: itype=-1, 0 or 1.
8:     rrldrrm – Real (Kind=nag_wp) arrayOutput
On exit: the requested correlation coefficients.
If only Kendall's tau coefficients are requested (itype=-1), rrjk contains Kendall's tau for the jth and kth variables.
If only Spearman's coefficients are requested (itype=1), rrjk contains Spearman's rank correlation coefficient for the jth and kth variables.
If both Kendall's tau and Spearman's coefficients are requested (itype=0), the upper triangle of rr contains the Spearman coefficients and the lower triangle the Kendall coefficients. That is, for the jth and kth variables, where j is less than k, rrjk contains the Spearman rank correlation coefficient, and rrkj contains Kendall's tau, for j=1,2,,m and k=1,2,,m.
(Diagonal terms, rrjj, are unity for all three values of itype.)
9:     ldrr – IntegerInput
On entry: the first dimension of the array rr as declared in the (sub)program from which g02bpf is called.
Constraint: ldrrm.
10:   ncases – IntegerOutput
On exit: the number of cases, nc, actually used in the calculations (when cases involving missing values have been eliminated).
11:   incasen – Integer arrayOutput
On exit: incasei holds the value 1 if the ith case was included in the calculations, and the value 0 if the ith case contained a missing value for at least one variable. That is, incasei=wi (see Section 3), for i=1,2,,n.
12:   kworkan – Integer arrayWorkspace
13:   kworkbn – Integer arrayWorkspace
14:   kworkcn – Integer arrayWorkspace
15:   work1m – Real (Kind=nag_wp) arrayWorkspace
16:   work2m – Real (Kind=nag_wp) arrayWorkspace
17:   ifail – IntegerInput/Output
On entry: ifail must be set to 0, -1 or 1. If you are unfamiliar with this argument you should refer to Section 3.4 in How to Use the NAG Library and its Documentation 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 argument, 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=value.
Constraint: n2.
ifail=2
On entry, m=value.
Constraint: m2.
ifail=3
On entry, ldrr=value and m=value.
Constraint: ldrrm.
On entry, ldx=value and n=value.
Constraint: ldxn.
ifail=4
On entry, itype=value.
Constraint: itype=-1 or 1.
ifail=5
After observations with missing values were omitted, fewer than two cases remained.
ifail=-99
An unexpected error has been triggered by this routine. Please contact NAG.
See Section 3.9 in How to Use the NAG Library and its Documentation for further information.
ifail=-399
Your licence key may have expired or may not have been installed correctly.
See Section 3.8 in How to Use the NAG Library and its Documentation for further information.
ifail=-999
Dynamic memory allocation failed.
See Section 3.7 in How to Use the NAG Library and its Documentation for further information.

7
Accuracy

You are warned of the need to exercise extreme care in your selection of missing values. g02bpf treats all values in the inclusive range 1±0.1x02bef-2×xmj, where xmj is the missing value for variable j specified in xmiss.
You must therefore ensure that the missing value chosen for each variable is sufficiently different from all valid values for that variable so that none of the valid values fall within the range indicated above.

8
Parallelism and Performance

g02bpf 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 g02bpf depends on n and m, and the occurrence of missing values.

10
Example

This example reads in a set of data consisting of nine observations on each of three variables. Missing values of 0.99 and 0.0 are declared for the first and third variables respectively; no missing value is specified for the second variable. The program then calculates and prints the rank of each observation, and both Kendall's tau and Spearman's rank correlation coefficients for all three variables, omitting completely all cases containing missing values; cases 5, 8 and 9 are therefore eliminated, leaving only six cases in the calculations.

10.1
Program Text

Program Text (g02bpfe.f90)

10.2
Program Data

Program Data (g02bpfe.d)

10.3
Program Results

Program Results (g02bpfe.r)