BRANKS Function

BRANKS( matrix ) ;

The BRANKS function computes the tied ranks and the bivariate ranks for an matrix and returns an matrix of these ranks. The tied ranks of the first column of matrix are contained in the first column of the result matrix; the tied ranks of the second column of matrix are contained in the second column of the result matrix; and the bivariate ranks of matrix are contained in the third column of the result matrix.

The tied rank of an element of a vector is defined as

     

where

     

The bivariate rank of a pair is defined as

     

The results of the BRANKS function can be used to compute rank-based correlation coefficients such as the Spearman rank-order correlation and Hoeffding’s statistic.

The following statements compute the bivariate ranks of two columns of data:

z = { 1 2,
      2 1,
      3 3,
      3 5,
      4 4,
      5 4,
      5 4,
      4 5 };
 
b = branks(z);
print b;

Figure 23.51 Tied Ranks and Bivariate Ranks
b
1 2 1
2 1 1
3.5 3 3
3.5 7.5 3.5
5.5 5 4
7.5 5 4.75
7.5 5 4.75
5.5 7.5 5