|
|
|
|
|
by samch93
1457 days ago
|
|
try the following R code: fisher.test(matrix(c(786, 298, 22999, 11156), nrow = 2)) #> Fisher's Exact Test for Count Data #> #>data: matrix(c(786, 298, 22999, 11156), nrow = 2) #>p-value = 0.0003266 #>alternative hypothesis: true odds ratio is not equal to 1 #>95 percent confidence interval: #> 1.116046 1.469612 #>sample estimates: #>odds ratio #> 1.279435 |
|