g02bp 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.
Syntax
C# |
---|
public static void g02bp( int n, int m, double[,] x, int[] miss, double[] xmiss, int itype, double[,] rr, out int ncases, int[] incase, out int ifail ) |
Visual Basic |
---|
Public Shared Sub g02bp ( _ n As Integer, _ m As Integer, _ x As Double(,), _ miss As Integer(), _ xmiss As Double(), _ itype As Integer, _ rr As Double(,), _ <OutAttribute> ByRef ncases As Integer, _ incase As Integer(), _ <OutAttribute> ByRef ifail As Integer _ ) |
Visual C++ |
---|
public: static void g02bp( int n, int m, array<double,2>^ x, array<int>^ miss, array<double>^ xmiss, int itype, array<double,2>^ rr, [OutAttribute] int% ncases, array<int>^ incase, [OutAttribute] int% ifail ) |
F# |
---|
static member g02bp : n : int * m : int * x : float[,] * miss : int[] * xmiss : float[] * itype : int * rr : float[,] * ncases : int byref * incase : int[] * ifail : int byref -> unit |
Parameters
- n
- Type: System..::..Int32On entry: , the number of observations or cases.Constraint: .
- m
- Type: System..::..Int32On entry: , the number of variables.Constraint: .
- x
- Type: array<System..::..Double,2>[,](,)[,][,]An array of size [dim1, m]Note: dim1 must satisfy the constraint:On entry: must be set to , the value of the th observation on the th variable, for and .On exit: contains the rank of the observation , for and . (For those observations containing missing values, and therefore excluded from the calculation, , for .)
- miss
- Type: array<System..::..Int32>[]()[][]An array of size [m]On entry: must be set to if a missing value, , is to be specified for the th variable in the array x, or set equal to otherwise. Values of miss must be given for all variables in the array x.On exit: the array miss is overwritten by the method, and the information it contained on entry is lost.
- xmiss
- Type: array<System..::..Double>[]()[][]An array of size [m]On entry: must be set to the missing value, , to be associated with the th variable in the array x, for those variables for which missing values are specified by means of the array miss (see [Accuracy]).On exit: the array xmiss is overwritten by the method, and the information it contained on entry is lost.
- itype
- Type: System..::..Int32On entry: the type of correlation coefficients which are to be calculated.
- Only Kendall's tau coefficients are calculated.
- Both Kendall's tau and Spearman's coefficients are calculated.
- Only Spearman's coefficients are calculated.
Constraint: , or .
- rr
- Type: array<System..::..Double,2>[,](,)[,][,]An array of size [dim1, m]Note: dim1 must satisfy the constraint:On exit: the requested correlation coefficients.If only Kendall's tau coefficients are requested (), contains Kendall's tau for the th and th variables.If only Spearman's coefficients are requested (), contains Spearman's rank correlation coefficient for the th and th variables.If both Kendall's tau and Spearman's coefficients are requested (), the upper triangle of rr contains the Spearman coefficients and the lower triangle the Kendall coefficients. That is, for the th and th variables, where is less than , contains the Spearman rank correlation coefficient, and contains Kendall's tau, for and .(Diagonal terms, , are unity for all three values of itype.)
- ncases
- Type: System..::..Int32%On exit: the number of cases, , actually used in the calculations (when cases involving missing values have been eliminated).
- incase
- Type: array<System..::..Int32>[]()[][]An array of size [n]On exit: holds the value if the th case was included in the calculations, and the value if the th case contained a missing value for at least one variable. That is, (see [Description]), for .
- ifail
- Type: System..::..Int32%On exit: unless the method detects an error or a warning has been flagged (see [Error Indicators and Warnings]).
Description
The input data consists of observations for each of variables, given as an array
where is the th observation on the th variable. In addition, each of the 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 th variable is denoted by . Missing values need not be specified for all variables.
Let if observation contains a missing value for any of those variables for which missing values have been declared; i.e., if for any for which an has been assigned (see also [Accuracy]); and otherwise, for .
The quantities calculated are:
(a) | Ranks
For a given variable, say, each of the observations for which , for , 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 .
The smallest of these valid observations for variable is assigned the rank , the second smallest observation for variable the rank , the third smallest the rank , and so on until the largest such observation is given the rank , where .
If a number of cases all have the same value for the given variable, , then they are each given an ‘average’ rank, e.g., if in attempting to assign the rank , observations for which were found to have the same value, then instead of giving them the ranks
Let be the rank assigned to the observation when the th variable is being ranked. For those observations, , for which , , for .
The actual observations are replaced by the ranks , for and . |
||||||||||||||||
(b) | Nonparametric rank correlation coefficients
|
References
Siegel S (1956) Non-parametric Statistics for the Behavioral Sciences McGraw–Hill
Error Indicators and Warnings
Errors or warnings detected by the method:
Some error messages may refer to parameters that are dropped from this interface
(LDX, LDRR) In these
cases, an error in another parameter has usually caused an incorrect value to be inferred.
On entry, .
On entry, .
On entry, , or .
- After observations with missing values were omitted, fewer than cases remained.
Accuracy
You are warned of the need to exercise extreme care in your selection of missing values. g02bp treats all values in the inclusive range , where is the missing value for variable 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.
Parallelism and Performance
None.
Further Comments
The time taken by g02bp depends on and , and the occurrence of missing values.
Example
This example reads in a set of data consisting of nine observations on each of three variables. Missing values of and 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 , and are therefore eliminated, leaving only six cases in the calculations.
Example program (C#): g02bpe.cs