When researchers need to measure the relationship between two sets of ranked data, most reach for Spearman’s rho out of habit. But there’s another rank correlation measure – Kendall’s tau (ฯ„) – that approaches the same problem from a fundamentally different angle, and in many statistical contexts, it actually does the job better. Kendall’s tau is a nonparametric coefficient that quantifies the strength and direction of association between two ranked variables, not by comparing differences in ranks, but by examining pairs of observations and asking a simple question: do these two subjects rank in the same order on both variables, or in the opposite order? This pair-by-pair logic – rooted in the concepts of concordance and discordance – makes ฯ„ one of the most interpretable correlation measures available to psychology researchers.

Table of Contents

The logic behind Kendall’s tau

Unlike Spearman’s rho, which applies Pearson’s product-moment formula to ranked data, Kendall’s tau takes a more direct route. It is a nonparametric measure of association based on counting concordant and discordant pairs among all possible pairings of observations. For any two observations – say, participant i and participant j – the pair is concordant if both variables are ordered in the same direction (i ranks higher than j on both variable X and variable Y). The pair is discordant if the ordering is reversed: higher on X but lower on Y, or vice versa.

Kendall’s tau was introduced by Maurice Kendall in the mid-20th century as an alternative to Spearman’s rank correlation, offering robustness in situations where ties are present in the data. The coefficient ฯ„ is essentially the net balance between these two types of pairs, scaled to fall between โˆ’1 and +1. A value of +1 means every single pair is concordant – perfect agreement in rankings. A value of โˆ’1 means every pair is discordant – rankings are completely reversed. A value near 0 indicates no consistent ordering relationship between the two variables.

This concordance-discordance logic also gives ฯ„ a clean probabilistic meaning: it represents the probability that a randomly selected pair of observations is concordant, minus the probability that it is discordant. This makes the interpretation of Kendall’s tau in terms of agreeable and non-agreeable pairs very direct, which is especially useful when communicating findings to audiences who are not statisticians.

How Kendall’s tau is computed

The basic formula for Kendall’s tau (often called tau-a, used when there are no ties) is:

ฯ„ = (C โˆ’ D) / (C + D)

where C is the total count of concordant pairs and D is the total count of discordant pairs. Concordant and discordant pairs are determined from ranked values, not the raw data. For a dataset of n observations, the total number of unique pairings is n(nโˆ’1)/2. Each pairing is examined and classified as concordant, discordant, or tied.

A worked example

To make this concrete, consider a clinical example drawn from StatsDirect: a tutor ranks ten clinical psychology students on two dimensions – career suitability and psychology knowledge. The question is whether students ranked higher in knowledge are also ranked higher in career suitability. After listing all possible pairs of students and identifying which pairs are concordant and which are discordant, we get a Kendall’s tau of 0.51. A two-sided significance test yields p = .047, allowing us to reject the null hypothesis and conclude that the two rankings are not independent. Students the tutor rated as more knowledgeable were also rated as more career-suitable, and this association is statistically significant.

As a simpler illustration: suppose two doctors each rank six patients by physical health. We take one doctor’s ranking as the reference (sorted 1 to 6) and compare it with the other doctor’s ranking. For each rank, we look at all ranks below it and note whether they are larger (concordant) or smaller (discordant). If we count 11 concordant and 4 discordant pairs, tau = (11 โˆ’ 4) / (11 + 4) = 0.47, indicating a moderate positive agreement between the two doctors’ assessments.

Adjusting for tied ranks

Real-world data – especially in psychology – frequently contains ties. Rating scales with a limited number of response options often cause multiple participants to receive identical scores, and when assigned the same rank, they cannot be classified as either concordant or discordant. Kendall’s tau addresses this through a variant called tau-b (ฯ„b).

Tau-b uses a correction in the denominator that accounts separately for ties on the X variable, ties on the Y variable, and ties on both simultaneously, ensuring the coefficient still ranges between โˆ’1 and +1. When there are no ties in the data, ฯ„b equals the simpler ฯ„a. Tau-b is the default used by most statistical software, including R’s cor() function, when ties are present.

A third variant, tau-c (also called Stuart-Kendall tau-c), is designed for situations where the two variables have different numbers of possible values – for instance, when one variable is continuous and the other is binary or has fewer ordinal levels. Tau-c can reach ยฑ1 for non-square contingency tables, unlike tau-b, which is bounded below ยฑ1 in such cases. For most psychological research involving rating scales and preference rankings, tau-b is the appropriate choice.

Testing for significance

Once ฯ„ is computed, the next step is to determine whether it differs significantly from zero – that is, whether there is a real association in the population, rather than a pattern that could have arisen by chance.

Small samples (n < 10)

When data contain no ties and the sample is small (fewer than 9 observations), the significance of tau is evaluated using a recurrence formula to derive exact probability values. This exact method is preferred over approximations when sample sizes are very small, because the normal approximation is less reliable in these conditions.

Larger samples

For larger samples, a z-statistic is computed and compared to the standard normal distribution. When reporting a Kendall’s tau result, researchers typically include the coefficient, the degrees of freedom (n โˆ’ 2), and the p-value – for example: “A Kendall’s tau correlation indicated a moderate positive association, ฯ„(4) = 0.47, p = .188.” When ties are present, inferences are drawn from a normal approximation using an extended variance formula.

Kendall’s tau vs. Spearman’s rho

Both Kendall’s ฯ„ and Spearman’s ฯ are rank-based, nonparametric measures of monotonic association, and in most datasets they point to the same conclusion. But they differ in meaningful ways, and these differences matter in certain research situations.

How the coefficients compare in value

For the same dataset, Spearman’s rho typically yields a numerically larger value than Kendall’s tau. This is not because one is more “accurate” than the other – it reflects the different scales and mathematical structures of the two formulas. Despite the difference in magnitude, both coefficients typically lead to the same inferences. The key difference is in how they handle deviations: Spearman’s rho is more sensitive to errors and discrepancies in the data, while Kendall’s tau has better distributional properties.

When tau is preferred

Kendall’s tau has several specific advantages that make it the better choice in certain scenarios:

Small samples with tied ranks: Kendall’s tau should be preferred over Spearman’s correlation when the dataset is small and there are many tied ranks. Tied values are handled more precisely through tau-b’s correction factors.

Psychiatric and clinical data: A study examining correlation methods in psychiatric research found that Kendall’s tau-b maintained adequate control of type I error rates and provided less biased estimates than Spearman’s r when applied to psychiatric symptom rating data. This has clear implications for clinical psychology research, where symptom severity scales frequently produce skewed, tied data.

Probabilistic interpretability: In the textbook Statistical Methods for Psychology, Dave Howell concludes that Kendall’s tau is generally preferred over Spearman’s rho because it is a better estimate of the corresponding population parameter and its standard error is known. The probabilistic interpretation of tau – the net probability of concordance over discordance – is also more conceptually transparent than the rank-difference basis of rho.

Non-normal and ordinal data: Kendall’s tau is robust to outliers and works well with skewed or non-normally distributed data. This is particularly relevant in behavioral and social science research, where data rarely follows a perfect normal distribution.

When Spearman’s rho is still used

Despite tau’s statistical advantages, Spearman’s rho remains more widely reported in published research, largely due to convention and familiarity. In most situations, the two measures align closely and lead to the same inferences, so either is defensible. Spearman’s rho also has computational advantages for very large datasets, where tau’s pairwise comparison approach can be more demanding to compute.

Applications in psychology research

Kendall’s tau appears across a wide range of psychological research contexts where rank data is collected. In social science and psychology, survey results and behavioral studies often yield ordinal data – Likert-scale responses, ranked preferences, observer ratings – that do not meet the assumptions of parametric tests. In such cases, tau provides a reliable, assumption-light alternative.

In clinical settings, tau is used to examine associations between symptom severity rankings and treatment outcome rankings. In educational psychology, it quantifies whether students who rank highly on one assessment tend to rank highly on another. In personality research, it can capture monotonic relationships between trait rankings that aren’t necessarily linear in nature.

The measure’s direct grounding in the logic of agreement – do these two subjects maintain the same relative ordering across both variables? – makes it particularly well-suited to any research question where the meaningful unit is the comparison between individuals rather than their absolute scores.

What do you think? When a researcher finds the same significant result using both Spearman’s rho and Kendall’s tau, does it matter which one they report – and should journals have standardized guidelines for choosing between them? If you were designing a study comparing clinicians’ rankings of patient improvement, would you trust Kendall’s tau more than Spearman’s rho to detect a real association, and why?

How useful was this post?

Click on a star to rate it!

Average rating 5 / 5. Vote count: 2

No votes so far! Be the first to rate this post.

We are sorry that this post was not useful for you!

Let us improve this post!

Tell us how we can improve this post?

References
  1. https://www.statisticshowto.com/kendalls-tau/
  2. https://online.stat.psu.edu/stat509/lesson/18/18.3
  3. https://www.numberanalytics.com/blog/understanding-kendalls-tau-key-stats-correlation
  4. https://www.statisticssolutions.com/free-resources/directory-of-statistical-analyses/kendalls-tau-and-spearmans-rank-correlation-coefficient/
  5. https://library.virginia.edu/data/articles/correlation-pearson-spearman-and-kendalls-tau
  6. https://www.statsdirect.com/help/nonparametric_methods/kendall_correlation.htm
  7. https://numiqo.com/tutorial/kendalls-tau
  8. https://en.wikipedia.org/wiki/Kendall_rank_correlation_coefficient
  9. https://pubmed.ncbi.nlm.nih.gov/10221741/
  10. https://www.researchgate.net/post/Does-Spearmans-rho-have-any-advantage-over-Kendalls-tau
  11. https://ishanjainoffical.medium.com/understanding-kendalls-tau-rank-correlation-c959a7daea56
  12. https://statisticaloddsandends.wordpress.com/2019/07/08/spearmans-rho-and-kendalls-tau/

Comments

Leave a Reply

Your email address will not be published. Required fields are marked *

Statistics in Psychology

1 Introduction to Statistics

  1. Meaning of Statistics
  2. Types of Statistics
  3. Scope and Use of Statistics
  4. Limitations of Statistics
  5. Distrust and Misuse of Statistics

2 Descriptive Statistics

  1. Organising Data
  2. Summarising Data
  3. Use of Descriptive Statistics

3 Inferential Statistics

  1. Concept and Meaning of Inferential Statistics
  2. Inferential Procedures
  3. Hypothesis Testing
  4. General Procedure for Testing Hypothesis

4 Frequency Distribution and Graphical Presentation

  1. Arrangement of Data
  2. Tabulation of Data
  3. Graphical Presentation of Data
  4. Diagrammatic Presentation of Data

5 Concept of Central Tendency

  1. Meaning of Measures of Central Tendency
  2. Functions of Measures of Central Tendency
  3. Types of Measures of Central Tendency
  4. Characteristics of a Good Measures of Central Tendency

6 Mean, Median and Mode

  1. Symbols Used in Calculation of Measures of Central Tendency
  2. The Arithmetic Mean
  3. The Median
  4. The Mode
  5. When to Use the Various Measures of Central Tendency

7 Concept of Dispersion

  1. Concept of Dispersion
  2. Functions of Dispersion
  3. Measures of Dispersion
  4. Significance of Measures of Dispersion
  5. Types of Measures of Variability/Dispersion

8 Range, MD, SD and QD

  1. Range
  2. Quartile Deviation
  3. The Average Deviation
  4. The Standard Deviation
  5. When to Use Different Measures of Dispersion

9 Introduction to Parametric Correlation

  1. Introduction to Correlation
  2. Scatter Diagram
  3. Correlation: Linear and Non-Linear Relationship
  4. Direction of Correlation: Positive and Negative
  5. Correlation: The Strength of Relationship
  6. Measurements of Correlation
  7. Correlation and Causality
  8. Uses of Correlation

10 Product Moment Coefficient of Correlation

  1. Building Blocks of Correlation
  2. Pearsonโ€™s Product Moment Coefficient of Correlation
  3. Interpretation of Correlation
  4. Using Raw Score Method for Calculating r
  5. Significance Testing of r
  6. Other Types of Pearsonโ€™s Correlation

11 Introduction to Non-Parametric Correlation

  1. Parameter Estimation
  2. Parametric and Non-parametric Statistics
  3. Scales of Measurement
  4. Conditions for Rank Order Correlations
  5. Ranking of the Data
  6. Rank Correlations

12 Rank Correlation (rho and Kendall Rank Correlation

  1. Rank-Order Correlations
  2. Spearmanโ€™s rho (rs)
  3. Kendallโ€™s tau (ฯ„)

13 Significance of the Difference of Frequency- Chi-Square

  1. Parametric and Non-Parametric Statistics Tests
  2. Chi-square Test: Definitions
  3. Assumptions for the Application of x2 Test
  4. Properties of the Chi-square Distribution
  5. Application of Chi-square Test
  6. Precautions about Using the Chi-square Test

14 Concept and Calculation of Chi-Square

  1. Application of Chi-square Test
  2. The Chi-square Test when Table Entries are Small (Yateโ€™s Correction)
  3. Chi-square as a Test of Independence
  4. 2 ร— 2 Fold Contingency Tables

15 Significance of the Differences between Means (T-value)

  1. Need and Importance of the Significance of the Difference between Means
  2. Fundamental Concepts in Determining the Significance of the Difference between Means
  3. Methods to Test the Significance of Difference between the Means of Two Independent Groups (t-test)
  4. Significance of the Difference Between two Correlated Means

16 Normal Distribution- Definition, Characteristics and Properties

  1. Definitions of Probability
  2. The Normal Distribution
  3. Deviation from the Normality
  4. Characteristics of a Normal Curve
  5. Properties of the Normal Distribution
  6. Application of the Normal Curve