Content Disclaimer Copyright @2020. All Rights Reserved. |
Links : Home Index (Subjects) Contact StatsToDo
Explanations
The Binomial test evaluate the probability Pbin of seeing k or more extreme number of positive
cases in a sample of n cases, if the reference proportion is Pref.
Examples
Please note : Binomial probability assumes that the observation is one off. In most quality assurance programs repeated observations are made, and the probability estimates must take into account variations from repeated measurements, and different statistics should be used. Three parameters are involved :
The test result is the Binomial Probability, abbreviated to Pbin. Two such values are calculated, although usually one is required in a particular study.
Calculations use the Binomial Coefficient, which required calculation of Factorial numbers. The duration of calculations therefore increases exponentially with large numbers, and sample size in excess of 1000 may exceed the time limits allowed by the server and crash the program. Should this happens, an alternative algorithm using the approximate Normal transformation of the proportion, using the following algorithm.
Reference : Nonparametric Statistics for the Behavioral Sciences. (2nd. Ed. 1998) S. Siegal & N. J. Castellan Jr. McGraw-Hill New York. ISBN 0-07-057357-3 p. 38 Example 1 A gambler arriving at a casino requests that he be allowed to use his own dice, as it gives him confidence. He insisted that the dice was properly made, and contains no bias. The casino authority agreed to this, providing they could satisfy themselves that this was an unbiased dice after 1000 throws of the dice. As the dice has 6 sides, the chance of having any single value is 1/6=0.17 (Pref = 0.17 or 17%) if the dice is unbiased. When the dice was thrown 1000 times (n=1000), the value 6 was seen 200 times (k=200). In other words the number 6 was obtained in 20% of the time. Binomial test shows that the probability of obtaining k=200 or more times for any number (number 6 in this case) in n=1000 throws, when the expected proportion Pref=0.17, is Pbin = 0.03. Although the results of this test was marginal, it was considered statistically significant, using the standard of p<0.05, and the null hypothesis (that the dice was unbias) could be rejected. The casino therefore concluded that the dice was possibly biased, and disallowed its use. Example 2 A dangerous operation on the heart is expected to have a mortality rate of 14% (Pref=0.14). A new surgeon was appointed, and amongst his first 8 (n=8) operations 5 patients died (k=5). In other words, his death rate in the first 8 operations was 62.5%. When the issue was raised by the anaesthetists, the surgeon replied that this should not be unexpected as the operation was known to be dangerous and associated with a high mortality rate, and the number of cases was too few for any conclusions to be drawn in any case. The governance committee was not satisfied with this answer and sought statistical clarification. The Binomial test produce a probability of Pbin = 0.0021 in observing k>=5 deaths in n=8 cases, when the expected deaths rate was 14% (Pref=0.14). A conclusion that the mortality rate was significantly higher than that expected could therefore be drawn, and further investigations warranted.
The R code for the Binomial Test is copied from the reference web page https://www.rdocumentation.org/packages/stats/versions/3.6.2/topics/binom.test, the basic formular is
The data for demonstration is the first row in the Javascript program where the regerence proportion is 60% (0.6), and 55 positives found in 100 observations (x = 55, n = 100) p = 0.6 n = 100 x = 55The first option is to test the null hypothesis probability that 55 in 100 is significantly less than 60% binom.test(x, n, p,alternative = "less")The results are as follows number of successes = 55, number of trials = 100, p-value = 0.1789 alternative hypothesis: true probability of success is less than 0.6 95 percent confidence interval: 0.0000000 0.6348377 sample estimates: probability of success 0.55In the firrst line p-value = 0.1789 means the probability of the null hypothesis that 55 in 100 is not less than 60% (0.6) is 0.1789 The second and third line indicates that 55 positives in 100 reprsents a 95% confidence of being less than 60& to be 0 to 0.6348 The last line merely reiterates 55/100 = 0.55 The second option is to test the null hypothesis probability that 55 in 100 is significantly greater than 60% binom.test(x, n, p,alternative = "greater")The results are as follows number of successes = 55, number of trials = 100, p-value = 0.8689 alternative hypothesis: true probability of success is greater than 0.6 95 percent confidence interval: 0.4628896 1.0000000 sample estimates: probability of success 0.55In the firrst line p-value = 0.8689 means the probability of the null hypothesis that 55 in 100 is not greater than 60% (0.6) is 0.8689 The second and third line indicates that 55 positives in 100 reprsents a 95% confidence of being greater than 60% to be 0.4629 to 1 The last line merely reiterates 55/100 = 0.55 The third option is to test the null hypothesis probability that 55 in 100 is significantly not 60% binom.test(x, n, p,alternative = "two.sided")The results are as follows number of successes = 55, number of trials = 100, p-value = 0.3092 alternative hypothesis: true probability of success is not equal to 0.6 95 percent confidence interval: 0.4472802 0.6496798 sample estimates: probability of success 0.55In the firrst line p-value = 0.3096 means the probability of the null hypothesis that 55 in 100 is not 60% (0.6) is 0.3092 The second and third line indicates that 55 positives in 100 reprsents a 95% confidence of the true proportion is 0.4472 to 0.6497 The last line merely reiterates 55/100 = 0.55 |