我在小组配对排名上计算 Spearman 的 rho。斯皮尔曼以不正确处理领带而闻名。例如,取 2 组 8 的排名,即使两组中有 6 次是并列,相关性仍然很高:
> cor.test(c(1,2,3,4,5,6,7,8), c(0,0,0,0,0,0,7,8), method="spearman")
Spearman's rank correlation rho
S = 19.8439, p-value = 0.0274
sample estimates:
rho
0.7637626
Warning message:
Cannot compute exact p-values with ties
对于该数据,p 值 <.05 似乎具有相当高的统计意义。R中是否有Spearman的平局校正版本?迄今为止,用很多关系计算它的最佳公式是什么?