スピアマンの順位相関係数の有意性検定     Last modified: Sep 17, 2002

例題

2変数 x, y について,10 組の測定値がある。x,y の間に相関はあるか。
x9.7 10.3 9.6 7.7 10.2 10.6 10.4 11.4 7.8 8.6
y9.9 10.9 9.4 11.4 10.1 8.4 10.4 11.4 9.0 9.6


R による解析

> x <- c(9.7, 10.3, 9.6, 7.7, 10.2, 10.6, 10.4, 11.4, 7.8, 8.6)
> y <- c(9.9, 10.9, 9.4, 11.4, 10.1, 8.4, 10.4, 11.4, 9.0, 9.6)

> cor.test(x, y, method="spearman")

	Spearman's rank correlation rho

data:  x and y 
S = 140, p-value = 0.6818
alternative hypothesis: true rho is not equal to 0 
sample estimates:
      rho 
0.1458973 

Warning message: 
p-values may be incorrect due to ties in: cor.test.default(x, y, method = "spearman")


・ 手法の解説ページ
・ 直前のページへ戻る  ・ E-mail to Shigenobu AOKI