以下二项式检验(精确二项式检验)的p值为0.05698,略大于 0.05。95% CI 为 (0.5698, 0.8077)。
binom.test(x = 44, n = 63, p = 0.8, alternative = "two.sided")
以下比例检验(没有 Yates 的连续性校正)的p值为0.04382,略小于 0.05。95% CI 为 (0.5764, 0.7976)。
prop.test(x = x1, n = n1, p = 0.8, alternative = "two.sided", correct = FALSE)
那么,我应该选择哪种测试呢?要报告哪个p值?谢谢。