我正在尝试解决以下问题:
球员 A 在 25 场比赛中赢了 17 场,而球员 B 在 20 场比赛中赢了 8 场——这两个比率之间有显着差异吗?
想到的在 R 中要做的事情如下:
> prop.test(c(17,8),c(25,20),correct=FALSE)
2-sample test for equality of proportions without continuity correction
data: c(17, 8) out of c(25, 20)
X-squared = 3.528, df = 1, p-value = 0.06034
alternative hypothesis: two.sided
95 percent confidence interval:
-0.002016956 0.562016956
sample estimates:
prop 1 prop 2
0.68 0.40
所以这个测试表明在 95% 的置信水平上差异不显着。
因为我们知道这prop.test()
只是使用近似值,所以我想通过使用精确的二项式检验来使事情变得更精确 - 我这样做是双向的:
> binom.test(x=17,n=25,p=8/20)
Exact binomial test
data: 17 and 25
number of successes = 17, number of trials = 25, p-value = 0.006693
alternative hypothesis: true probability of success is not equal to 0.4
95 percent confidence interval:
0.4649993 0.8505046
sample estimates:
probability of success
0.68
> binom.test(x=8,n=20,p=17/25)
Exact binomial test
data: 8 and 20
number of successes = 8, number of trials = 20, p-value = 0.01377
alternative hypothesis: true probability of success is not equal to 0.68
95 percent confidence interval:
0.1911901 0.6394574
sample estimates:
probability of success
0.4
现在这很奇怪,不是吗?每次p 值都完全不同!在这两种情况下,现在结果都(非常)显着,但 p 值似乎相当随意地跳跃。
我的问题
- 为什么每次的 p 值都不同?
- 如何在 R 中正确执行精确的两个样本比例二项式检验?