The following binomial test (exact binomial test) has a p-value of 0.05698, greater than 0.05 by a bit. 95% CI is (0.5698, 0.8077).
binom.test(x = 44, n = 63, p = 0.8, alternative = "two.sided")
The following proportions test (without Yates' continuity correction) has a p-value of 0.04382, less than 0.05 by a bit. 95% CI is (0.5764, 0.7976).
prop.test(x = x1, n = n1, p = 0.8, alternative = "two.sided", correct = FALSE)
So, which test should I choose? Which p-value to report? Thanks.