Questions tagged [kendall-tau]

A measure of concordance between two random variables based on ranks.

Kendall's tau is a measure of concordance for two random variables. It is based on ranks, and has many properties in common with Spearman's rho.

We say that $(y_{i,1},y_{i,2})$ and $(y_{j,1},y_{j,2})$ are concordant if:

$$(y_{i,1} - y_{j,1}) \times (y_{i,2} - y_{j,2}) >0 $$

And discordant if the product is $< 0$. For a given dataset, let $c$ = # of concordant observations and $d$ = # of discordant observations. Then:

$$\hat{\tau} = \frac{c-d}{n \choose 2}$$

If pairs are tied (i.e. $y_{i,1} = y_{j,1}$), then $\hat{\tau}$ is not bound by -1 and +1. There are different approaches to handling ties.

For more information:

193 questions
5
votes
1 answer

How to interpret the tau statistics in the Mann-Kendall test

How should the tau number from a Mann-Kendall test be interpreted? I've read that for trends to be detected by the test they must be monotonic. If I have data across years, group them by calendar month and then run the Mann-Kendall test and get a…
Bprodz
  • 163
3
votes
0 answers

Fast Kendall Tau in Matlab (and if necessary another language)

As I understand, there are two ways to compute Kendall Tau for a data matrix $X$ (n rows of data points in…
1
vote
1 answer

Kendall's statistic of concordance - multiple datapoints from each participant?

I'm reviewing a study that has used Kendall's statistic of concordance (as they have termed it). This has been used to evaluate correlation between two sets of data - these are two sets of observations from the same participants. There are two…
1
vote
1 answer

Kendall tau-b with one set containing only ties

I try to calculate the Kendall tau-b rank correlation for a huge number of paired sets. Some of those sets contain only ties, e.g., x1 = [1,1,1,1,1,1] which is compared to another set x2 = [1,1,1,1,2,2] Python's Kendall tau-b module import…
Julie
  • 11
1
vote
0 answers

How can I interpret the Wilcoxon test and Kendall tau-b?

For Wilcoxon test, I have p=0.000. I also did the Kendall's test to test the correlation, and I have Tb=0.366. I don't get it, if there is a significant difference, why there is a moderate agreement?
0
votes
0 answers

The difference between Z and Kendalls Tau in Mann-Kendall

In Mann-Kendall test there are 3 values, p-value, Z-value and Kendalls Tau value. What I want to know is what the difference in concept between Z and Kendalls Tau, as I read that both of them indicate the positive or negative relation between the…
Suha
  • 1