I am trying to do a Fishers exact test on the following dataset.
structure(list(found = c(17L, 21L, 18L), not.found = c(19L, 15L,
18L)), row.names = c("Gravel", "Grass", "Multi"), class = "data.frame")
Three options where left up to choice, an animals where either found or not. Naturally, the probability between these options should theorethically be 0.33. So it want to test for this probabilty
In the explanation of the test in R, it gives the option 'Hybrid':
hybrid
a logical. Only used for larger than 2×2 tables, in which cases it indicates whether the exact probabilities (default) or a hybrid approximation thereof should be computed.
I feel like this option would solve my issue, but I cannot seem to find how to implement it.
For no, my code looks like this:
fisher.test(data, hybrid = )
I would really like to have some help with filling in the 'hybrid' part, or some indication of another solution. Thanks!