ピアソンの積率相関係数の有意性検定と区間推定     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="pearson")

	Pearson's product-moment correlation

data:  x and y 
t = 0.3736, df = 8, p-value = 0.7184
alternative hypothesis: true correlation is not equal to 0 
95 percent confidence interval:
 -0.5434819  0.7026470 
sample estimates:
      cor 
0.1309564 


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