Suvarna Garge (Editor)

Kendall rank correlation coefficient

Updated on
Edit
Like
Comment
Share on FacebookTweet on TwitterShare on LinkedInShare on Reddit

In statistics, the Kendall rank correlation coefficient, commonly referred to as Kendall's tau coefficient (after the Greek letter τ), is a statistic used to measure the ordinal association between two measured quantities. A tau test is a non-parametric hypothesis test for statistical dependence based on the tau coefficient.

Contents

It is a measure of rank correlation: the similarity of the orderings of the data when ranked by each of the quantities. It is named after Maurice Kendall, who developed it in 1938, though Gustav Fechner had proposed a similar measure in the context of time series in 1897.

Intuitively, the Kendall correlation between two variables will be high when observations have a similar (or identical for a correlation of 1) rank (i.e. relative position label of the observations within the variable: 1st, 2nd, 3rd, etc.) between the two variables, and low when observations have a dissimilar (or fully different for a correlation of -1) rank between the two variables.

Both Kendall's τ and Spearman's ρ can be formulated as special cases of a more general correlation coefficient.

Definition

Let (x1y1), (x2y2), …, (xnyn) be a set of observations of the joint random variables X and Y respectively, such that all the values of ( x i ) and ( y i ) are unique. Any pair of observations ( x i , y i ) and ( x j , y j ) , where i j , are said to be concordant if the ranks for both elements agree: that is, if both x i > x j and y i > y j ; or if both x i < x j and y i < y j . They are said to be discordant, if x i > x j and y i < y j ; or if x i < x j and y i > y j . If x i = x j or y i = y j , the pair is neither concordant nor discordant.

The Kendall τ coefficient is defined as:

τ = ( number of concordant pairs ) ( number of discordant pairs ) n ( n 1 ) / 2 .

Properties

The denominator is the total number of pair combinations, so the coefficient must be in the range −1 ≤ τ ≤ 1.

  • If the agreement between the two rankings is perfect (i.e., the two rankings are the same) the coefficient has value 1.
  • If the disagreement between the two rankings is perfect (i.e., one ranking is the reverse of the other) the coefficient has value −1.
  • If X and Y are independent, then we would expect the coefficient to be approximately zero.
  • Hypothesis test

    The Kendall rank coefficient is often used as a test statistic in a statistical hypothesis test to establish whether two variables may be regarded as statistically dependent. This test is non-parametric, as it does not rely on any assumptions on the distributions of X or Y or the distribution of (X,Y).

    Under the null hypothesis of independence of X and Y, the sampling distribution of τ has an expected value of zero. The precise distribution cannot be characterized in terms of common distributions, but may be calculated exactly for small samples; for larger samples, it is common to use an approximation to the normal distribution, with mean zero and variance

    2 ( 2 n + 5 ) 9 n ( n 1 ) .

    Accounting for ties

    A pair { ( x i , y i ) , ( x j , y j ) } is said to be tied if x i = x j or y i = y j ; a tied pair is neither concordant nor discordant. When tied pairs arise in the data, the coefficient may be modified in a number of ways to keep it in the range [−1, 1]:

    Tau-a

    The Tau-a statistic tests the strength of association of the cross tabulations. Both variables have to be ordinal. Tau-a will not make any adjustment for ties. It is defined as:

    τ A = n c n d n 0

    where nc, nd and n0 are defined as in the next section.

    Tau-b

    The Tau-b statistic, unlike Tau-a, makes adjustments for ties. Values of Tau-b range from −1 (100% negative association, or perfect inversion) to +1 (100% positive association, or perfect agreement). A value of zero indicates the absence of association.

    The Kendall Tau-b coefficient is defined as:

    τ B = n c n d ( n 0 n 1 ) ( n 0 n 2 )

    where

    n 0 = n ( n 1 ) / 2 n 1 = i t i ( t i 1 ) / 2 n 2 = j u j ( u j 1 ) / 2 n c = Number of concordant pairs n d = Number of discordant pairs t i = Number of tied values in the  i th  group of ties for the first quantity u j = Number of tied values in the  j th  group of ties for the second quantity

    Tau-c

    Tau-c (also called Stuart-Kendall Tau-c) differs from Tau-b as in being more suitable for rectangular tables than for square tables.

    Significance tests

    When two quantities are statistically independent, the distribution of τ is not easily characterizable in terms of known distributions. However, for τ A the following statistic, z A , is approximately distributed as a standard normal when the variables are statistically independent:

    z A = 3 ( n c n d ) n ( n 1 ) ( 2 n + 5 ) / 2

    Thus, to test whether two variables are statistically dependent, one computes z A , and finds the cumulative probability for a standard normal distribution at | z A | . For a 2-tailed test, multiply that number by two to obtain the p-value. If the p-value is below a given significance level, one rejects the null hypothesis (at that significance level) that the quantities are statistically independent.

    Numerous adjustments should be added to z A when accounting for ties. The following statistic, z B , has the same distribution as the τ B distribution, and is again approximately equal to a standard normal distribution when the quantities are statistically independent:

    z B = n c n d v

    where

    v = ( v 0 v t v u ) / 18 + v 1 + v 2 v 0 = n ( n 1 ) ( 2 n + 5 ) v t = i t i ( t i 1 ) ( 2 t i + 5 ) v u = j u j ( u j 1 ) ( 2 u j + 5 ) v 1 = i t i ( t i 1 ) j u j ( u j 1 ) / ( 2 n ( n 1 ) ) v 2 = i t i ( t i 1 ) ( t i 2 ) j u j ( u j 1 ) ( u j 2 ) / ( 9 n ( n 1 ) ( n 2 ) )

    pvrank is a very recent R package that computes rank correlations and their p-values with various options for tied ranks. It is possible to compute exact Kendall coefficient test p-values for n ≤ 60.

    Algorithms

    The direct computation of the numerator n c n d , involves two nested iterations, as characterized by the following pseudo-code:

    numer := 0 for i:=2..N do for j:=1..(i-1) do numer := numer + sign(x[i] - x[j]) * sign(y[i] - y[j]) return numer

    Although quick to implement, this algorithm is O ( n 2 ) in complexity and becomes very slow on large samples. A more sophisticated algorithm built upon the Merge Sort algorithm can be used to compute the numerator in O ( n log n ) time.

    Begin by ordering your data points sorting by the first quantity, x , and secondarily (among ties in x ) by the second quantity, y . With this initial ordering, y is not sorted, and the core of the algorithm consists of computing how many steps a Bubble Sort would take to sort this initial y . An enhanced Merge Sort algorithm, with O ( n log n ) complexity, can be applied to compute the number of swaps, S ( y ) , that would be required by a Bubble Sort to sort y i . Then the numerator for τ is computed as:

    n c n d = n 0 n 1 n 2 + n 3 2 S ( y ) ,

    where n 3 is computed like n 1 and n 2 , but with respect to the joint ties in x and y .

    A Merge Sort partitions the data to be sorted, y into two roughly equal halves, y l e f t and y r i g h t , then sorts each half recursive, and then merges the two sorted halves into a fully sorted vector. The number of Bubble Sort swaps is equal to:

    S ( y ) = S ( y l e f t ) + S ( y r i g h t ) + M ( Y l e f t , Y r i g h t )

    where Y l e f t and Y r i g h t are the sorted versions of y l e f t and y r i g h t , and M ( , ) characterizes the Bubble Sort swap-equivalent for a merge operation. M ( , ) is computed as depicted in the following pseudo-code:

    function M(L[1..n], R[1..m]) i := 1 j := 1 nSwaps := 0 while i <= n and j <= m do if R[j] < L[i] then nSwaps := nSwaps + n - i + 1 j := j + 1 else i := i + 1 return nSwaps

    A side effect of the above steps is that you end up with both a sorted version of x and a sorted version of y . With these, the factors t i and u j used to compute τ B are easily obtained in a single linear-time pass through the sorted arrays.

    References

    Kendall rank correlation coefficient Wikipedia