This generic function overrides stats::fisher.test. If the passed table is a two-way tabyl, it runs it through janitor::fisher.test.tabyl, otherwise it just calls stats::fisher.test.
fisher.test(x, ...)
# Default S3 method
fisher.test(x, y = NULL, ...)
# S3 method for class 'tabyl'
fisher.test(x, ...)
The result is the same as the one of stats::fisher.test.
tab <- tabyl(mtcars, gear, cyl)
fisher.test(tab)
#>
#> Fisher's Exact Test for Count Data
#>
#> data: tab
#> p-value = 8.26e-05
#> alternative hypothesis: two.sided
#>