I am running a series of binomial tests for different trials. I ran 319 trials, and no matter the number of successes, my p-value is still < 2.2e-16. This includes when my trial had 0 successes.
binom.test(0, 319, p=0.5, alternative = c ("two.sided"), conf.level = 0.95)
the results come out as...
Exact binomial test
data: 0 and 319
number of successes = 0, number of trials = 319, p-value < 2.2e-16
alternative hypothesis: true probability of success is not equal to 0.5
95 percent confidence interval:
0.00000000 0.01149728
sample estimates:
probability of success
0
A successful trial has the same p-value...
Exact binomial test
data: 21 and 319
number of successes = 21, number of trials = 319, p-value < 2.2e-16
alternative hypothesis: true probability of success is not equal to 0.5
95 percent confidence interval:
0.04120874 0.09887112
sample estimates:
probability of success
0.06583072
Am I interpreting the results wrong? Please help!