対応のある場合のt検定

放送大学「心理統計法」第7章 2つの平均値の差の検定

1
2
3
x<-c(84,74,82,87,73,79)
y<-c(85,90,92,96,84,95)
t.test(x,y, alternative='two.sided', conf.level=.95, paired=TRUE)

Paired t-test

data: x and y
t = -4.6419, df = 5,a p-value = 0.005623
alternative hypothesis: true difference in means is not equal to 0
95 percent confidence interval:
-16.314669 -4.685331
sample estimates:
mean of the differences
-10.5

有意水準 5%で検定を行うとすれば,p-value = 0.005623<0.05であるから帰無仮説を棄却する。
すなわち,「母平均値に差がある」

Rコマンダーのメニューから行うには

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

アクティブデータセットをdに変更
以下はメニューで操作
統計量~平均~対応のあるt検定