Why and when should we use correlation coefficients designed for ordinal-scale data?¶
Standard correlation coefficients such as Pearson’s are not appropriate for ordinal data, because they assume interval-scale measurements and linear relationships between variables. For ordinal data—such as Likert-scale responses or exam grades—these assumptions do not hold, and applying Pearson’s coefficient can produce biased (typically underestimated) correlation estimates.
This page first demonstrates the problem through simulation, then introduces polyserial and polychoric correlation coefficients as the appropriate alternative for ordinal data.
The Problem: Pearson’s Correlation Underestimates the True Relationship¶
To see the issue concretely, consider a continuous variable \(X\) and a variable \(Y\) that is dichotomized (split into two categories) from an underlying continuous variable. We simulate data with a true correlation of \(\rho=0.5\) between \(X\) and the latent variable behind \(Y\), then repeatedly estimate Pearson’s correlation coefficient between \(X\) and the observed, dichotomized \(Y\).
The histogram below shows the distribution of these estimates across 1,000 simulated datasets.
As the plot shows, the mean of the estimates is noticeably below the true value of \(\rho=0.5\). Dichotomizing a continuous variable induces this downward (attenuation) bias in Pearson’s correlation coefficient—and the same kind of bias arises whenever the observed data are ordinal categories derived from an underlying continuous trait, such as survey responses.
The Solution: Polyserial and Polychoric Correlation¶
Polyserial and polychoric correlation coefficients (Drasgow, 1986) are designed to handle this situation. They assume that the observed ordinal or categorical variables arise from underlying latent continuous variables that have been discretized by thresholds:
Polyserial correlation estimates the relationship between one continuous variable and one ordinal variable.
Polychoric correlation estimates the relationship between two ordinal variables.
For example, if you are working with survey or questionnaire data, where participants respond using ordered categories (e.g., “strongly disagree” to “strongly agree”), polyserial or polychoric correlations can capture the latent relationship between the attitudes or traits that those responses reflect.
Using correlation coefficients tailored for ordinal-scale data helps preserve the meaningful order of categories and avoids the misleading results that come from inappropriately applying Pearson or Spearman correlation.
Numerical Example¶
Here is a numerical example to illustrate the concept, using the polychoric correlation.
Suppose there are latent variables \(X^*\) and \(Y^*\) that follow a bivariate standard normal distribution:
The observable ordinal variables \(X\) and \(Y\) are obtained by discretizing the latent variables using certain thresholds.
We then discretize \(X^*\) and \(Y^*\) into ordinal categories with varying numbers of bins, and compare the following coefficients calculated from the observed, discretized data against the true value of \(\rho\). To assess the variability of each estimate, we repeat this process across many simulated datasets:
Polychoric correlation coefficient
Pearson correlation coefficient
Spearman correlation coefficient
Kendall correlation coefficient
The figure below shows the mean estimated coefficients (with 95% confidence intervals across simulation trials) for different numbers of categories.
Conclusion¶
The polychoric correlation is designed for this situation and, on average, recovers the true correlation well across all numbers of categories.
In contrast, Pearson correlation tends to underestimate the true correlation, especially when the number of categories is small (i.e., when the data is coarsely discretized). Spearman and Kendall correlations are also affected by discretization and are not well-suited for recovering the underlying linear relationship in this type of data.
For ordinal-scale data—such as Likert-scale survey items or discretized ratings—polyserial and polychoric correlations are therefore the more appropriate choice.
References¶
Bedrick, E. J. (1995). A note on the attenuation of correlation. British Journal of Mathematical and Statistical Psychology, 48(2), 271–280.
Drasgow, F. (1986). Polychoric and polyserial correlations. In S. Kotz & N. Johnson (Eds.), The Encyclopedia of Statistics (Vol. 7, pp. 68–74). Wiley.