相関関係1

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

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

散布図

1
scatterplot(x,y, reg.line=lm, smooth=FALSE, spread=FALSE, boxplots='xy',span=0.5)

ピアソンの積率相関係数

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

Pearson’s product-moment correlation

data: x and y
t = 3.2359, df = 8, p-value = 0.01195
alternative hypothesis: true correlation is not equal to 0
95 percent confidence interval:
0.2344317 0.9379193
sample estimates:
cor
0.7529233

相関係数 0.7529233
無相関検定 t値 = 3.2359, 自由度 = 8, P値 = 0.01195
母相関は,0ではない
95 パーセント信頼区間: 0.2344317 0.9379193

Rコマンダーのメニュー操作

1
d<-data.frame(x,y)

アクティブデータセットをdに変更
グラフ~散布図
統計量~要約~相関の検定