31 값의 샘플 데이터 세트가 있습니다. 실제 평균이 10과 같은지 테스트하기 위해 R을 사용하여 양측 t- 검정을 실행했습니다.
t.test(x=data, mu=10, conf.level=0.95)
산출:
t = 11.244, df = 30, p-value = 2.786e-12
alternative hypothesis: true mean is not equal to 10
95 percent confidence interval:
19.18980 23.26907
sample estimates:
mean of x
21.22944
이제 동일한 작업을 수동으로 수행하려고합니다.
t.value = (mean(data) - 10) / (sd(data) / sqrt(length(data)))
p.value = dt(t.value, df=length(lengths-1))
이 방법을 사용하여 계산 된 t- 값은 t- 검정 R 함수의 출력과 동일합니다. 그러나 p- 값은 3.025803e-12입니다.
내가 잘못하고있는 아이디어가 있습니까?
감사!
편집하다
내 데이터 세트를 포함한 전체 R 코드는 다음과 같습니다.
# Raw dataset -- 32 observations
data = c(21.75, 18.0875, 18.75, 23.5, 14.125, 16.75, 11.125, 11.125, 14.875, 15.5, 20.875,
17.125, 19.075, 25.125, 27.75, 29.825, 17.825, 28.375, 22.625, 28.75, 27, 12.825,
26, 32.825, 25.375, 24.825, 25.825, 15.625, 26.825, 24.625, 26.625, 19.625)
# Student t-Test
t.test(x=data, mu=10, conf.level=0.95)
# Manually calculate p-value
t.value = (mean(data) - 10) / (sd(data) / sqrt(length(data)))
p.value = dt(t.value, df=length(data) - 1)