相関関係2

放送大学「心理統計法」第9章 相関関係(2)

順位付けはどの位似ているか

1
2
x<-c(7,4,3,1,2,10,5,9,6,8)
y<-c(5,4,3,2,6,9,1,10,8,7)

スピアマンの順位相関係数

1
cor.test(x, y, alternative="two.sided", method="spearman")

Spearman’s rank correlation rho

data: x and y
S = 44, p-value = 0.02117
alternative hypothesis: true rho is not equal to 0
sample estimates:
rho
0.7333333

ケンドールの順位相関係数

1
cor.test(x, y, alternative="two.sided", method="kendall")

Kendall’s rank correlation tau

data: x and y
T = 35, p-value = 0.02861
alternative hypothesis: true tau is not equal to 0
sample estimates:
tau
0.5555556