Suppose you have a set of data (eg. [a, b, a, a, b, b, etc.]), and you have the suspicion that the set of data follows the binomial distribution.
Your Null Hypothesis is: The probability of success p=0.6.
You run a binomial test on the data with a probability of success p=0.6, and the resulting P-value of the test is 0.55.
Is this result evidence that your data set follows the binomial distribution with probability of success p=0.6? I ask because the thought that the data follows a binomial distribution was not known for certain from the start, but the results of the binomial test seem to confirm it. Or do they?
You could also use a chi-squared test to test if the data fits a binomial distribution with probability of success p=0.6. But if the results of the initial binomial test were as described (p-value = 0.55), is there any reason to do this?
Thanks!
The data is indeed composed of two values (either "a" or "b"), much like an unfair coin flip. However, it is possible that the probability for the fairness of the coin is changing over time. My goal is to use a binomial test to test the data can be explained by a binomial distribution with fixed probability of success p=0.6.
– Stuart Aug 18 '16 at 21:28