oddsratio | R Documentation |
This function calculates the odds ratio in a 2x2 table/matrix or a data frame with two columns. The numerator equals the ratio of the top left entry and the bottom left entry, while the denonimator equals the ratio of the top right entry and the bottom right entry. This is usually slightly different from the calculation by stats::fisher.test
which is based on the ML estimate of the odds ratio.
oddsratio(x)
x |
A 2x2 matrix/table of counts or a |
A numeric vector of length one.
tab <- cbind(c(10, 5), c(4, 4)) oddsratio(tab)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.