対応のあるt検定

放送大学(院)「心理・教育統計法特論」第4章

対応のあるt検定

1
2
A月<-c(9,10,7,8,9,8,9,6,9,8,7,8,7,10,9)
B月<-c(5,6,9,6,9,8,6,5,7,5,7,6,6,7,7)

シャピロ・ウィルクの正規性検定

1
shapiro.test(A月);shapiro.test(B月)

Shapiro-Wilk normality test

data: A月
W = 0.9288, p-value = 0.2615

Shapiro-Wilk normality test

data: B月
W = 0.8909, p-value = 0.06928

対応のある場合のt検定

1
t.test(A月,B月, alternative='two.sided', conf.level=.95, paired=TRUE)

Paired t-test

data: A月 and B月
t = 3.851, df = 14, p-value = 0.001764
alternative hypothesis: true difference in means is not equal to 0
95 percent confidence interval:
0.7384383 2.5948950
sample estimates:
mean of the differences
1.666667