I have a bunch of related datasets. The pearson correlations between pairs of them are typically definitely larger than the spearman correlations. That suggests any correlation is linear, but one might expect that even if the pearson and spearman were the same. What does it mean when there is a definite gap between the pearson and the spearman correlation and the pearson is larger? This seems to be a consistent feature across my datasets.
|
The Spearman correlation is just the Pearson correlation using the ranks (order statistics) instead of the actual numeric values. The answer to your question is that they're not measuring the same thing. Pearson: linear trend, Spearman: monotonic trend. That the Pearson correlation is higher just means the linear correlation is larger than the rank correlation. This is probably due to influential observations in the tails of the distribution that have large influence relative to their ranked values. Tests of association using the Pearson correlation are of higher power when the linearity holds in the data. |
|||
|
|
The Pearson Correlation assumes several assumptions for it to be accurate: 1) Each variable is normally distributed; 2) Homoscedasticity, the variance of each variable remains constant; and 3) Linearity, meaning that a scatter plot depicting the relationship shows data points clustering symmetrically around the regression line. The Spearman Correlation is a nonparametric alternative to the Pearson one based on rank of the observations. The Spearman Correlation allows you to relax all three assumptions about your data set and derive correlations that are still reasonably accurate. What your data implies is that it probably breaks materially one or more of the mentioned assumptions materially so that the two correlations differ significantly. Given that you have a large gap between the two correlation you should investigate whether the variables of your data set are normally distributed, homoscedastic, and linear within a scatter plot. The above investigation will facilitate your decision on whether the Spearman or the Pearson correlation coefficient is the more representative one. |
|||||||||
|