Kendall tau rank correlation coefficient
|
|
It has been suggested that Kendall tau distance be merged into this article or section. (Discuss) Proposed since April 2010. |
In statistics, the Kendall rank correlation coefficient, commonly referred to as Kendall's tau (τ) coefficient, is a statistic used to measure the association between two measured quantities. A tau test is a non-parametric hypothesis test which uses the coefficient to test for statistical dependence.
Specifically, it is a measure of rank correlation: that is, 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,[1] though Gustav Fechner had proposed a similar measure in the context of time series in 1897.[2]
Contents |
[edit] Definition
Let (x1, y1), (x2, y2), …, (xn, yn) be a set of joint observations from two random variables X and Y respectively, such that all the values of (xi) and (yi) are unique. Any pair of observations (xi, yi) and (xj, yj) are said to be concordant if the ranks for both elements agree: that is, if both xi > xj and yi > yj or if both xi < xj and yi < yj. They are said to be discordant, if xi > xj and yi < yj or if xi < xj and yi > yj. If xi = xj or yi = yj, the pair is neither concordant nor discordant.
The Kendall τ coefficient is defined as:
[edit] Properties
The denominator is the total number of pairs, 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.
[edit] 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.
Under a null hypothesis of X and Y being independent, the sampling distribution of τ will have 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
.[4]
[edit] Accounting for ties
|
|
This article needs additional citations for verification. Please help improve this article by adding citations to reliable sources. Unsourced material may be challenged and removed. (June 2010) |
A pair {(xi, yi), (xj, yj)} is said to be tied if xi = xj or yi = yj; 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]:
[edit] Tau-a
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.
[edit] Tau-b
Tau-b statistic, unlike tau-a, makes adjustments for ties and is suitable for square tables. 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:
where
[edit] Tau-c
Tau-c differs from tau-b as in being more suitable for rectangular tables than for square tables.
[edit] 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, zA, is approximately characterized by a standard normal distribution when the quantities are statistically independent:
Thus, if you want to test whether two quantities are statistically dependent, compute zA, and find the cumulative probability for a standard normal distribution at − | zA | . For a 2-tailed test, multiply that number by two and this gives you the p-value. If the p-value is below your acceptance level (typically 5%), you can reject the null hypothesis that the quantities are statistically independent and accept the hypothesis that they are dependent.
Numerous adjustments should be added to zA when accounting for ties. The following statistic, zB, provides an approximation coinciding with the τB distribution and is again approximately characterized by a standard normal distribution when the quantities are statistically independent:
where
[edit] Algorithms
The direct computation of the numerator nc − nd, 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 + sgn(x[i] - x[j]) * sgn(y[i] - y[j])
return numer
Although quick to implement, this algorithm is O(n2) in complexity and becomes very slow on large samples. A more sophisticated algorithm[5] built upon the Merge Sort algorithm can be used to compute the numerator in
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(nlog n) complexity, can be applied to compute the number of swaps, S(y), that would be required by a Bubble Sort to sort yi. Then the numerator for τ is computed as:
- nc − nd = n0 − n1 − n2 + n3 − 2S(y),
where n3 is computed like n1 and n2, 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, yleft and yright, 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(yleft) + S(yright) + M(Yleft,Yright)
where Yleft and Yright are the sorted versions of yleft and yright, and
characterizes the Bubble Sort swap-equivalent for a merge operation.
is computed as depicted in the following pseudo-code:
function M(L[1..n], R[1..m])
n := n + m
i := 1
j := 1
nSwaps := 0
while i + j <= n do
if i > m or R[j] < L[i] then
nSwaps := nSwaps + m - (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 ti and uj used to compute τB are easily obtained in a single linear-time pass through the sorted arrays.
A second algorithm with
time complexity, based on AVL trees, was devised by David Christensen.[6]
[edit] See also
- Correlation
- Kendall tau distance
- Kendall's W
- Spearman's rank correlation coefficient
- Gamma test (statistics)
- Theil–Sen estimator
[edit] References
- ^ Kendall, M. (1938). "A New Measure of Rank Correlation". Biometrika 30 (1–2): 81–89. doi:10.1093/biomet/30.1-2.81. JSTOR 2332226.
- ^ Kruskal, W.H. (1958). "Ordinal Measures of Association". Journal of the American Statistical Association 53 (284): 814–861. doi:10.2307/2281954. JSTOR 2281954. MR100941.
- ^ Nelsen, R.B. (2001), "Kendall tau metric", in Hazewinkel, Michiel, Encyclopedia of Mathematics, Springer, ISBN 978-1556080104, http://www.encyclopediaofmath.org/index.php?title=K/k130020
- ^ Prokhorov, A.V. (2001), "Kendall coefficient of rank correlation", in Hazewinkel, Michiel, Encyclopedia of Mathematics, Springer, ISBN 978-1556080104, http://www.encyclopediaofmath.org/index.php?title=K/k055200
- ^ Knight, W. (1966). "A Computer Method for Calculating Kendall's Tau with Ungrouped Data". Journal of the American Statistical Association 61 (314): 436–439. doi:10.2307/2282833. JSTOR 2282833.
- ^ Christensen, David (2005). "Fast algorithms for the calculation of Kendall's τ". Computational Statistics 20 (1): 51–62. doi:10.1007/BF02736122.
- Abdi, H. (2007). "Kendall rank correlation". In Salkind, N.J.. Encyclopedia of Measurement and Statistics. Thousand Oaks (CA): Sage. http://www.utdallas.edu/~herve/Abdi-KendallCorrelation2007-pretty.pdf.
- Kendall, M. (1948) Rank Correlation Methods, Charles Griffin & Company Limited
[edit] External links
- Tied rank calculation
- Why Kendall tau?
- Software for computing Kendall's tau on very large datasets
- Online software: computes Kendall's tau rank correlation
- The CORR Procedure: Statistical Computations
|
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||

.



