I'm using R
to calculate the Fisher Exact test on a contingency table. I need it because in some table cells, I have values lower than 5, so I can't use Chi-square
.
I use
fisher.test(table)
,
but this only gives me a p-value.
Question: What if I also need a value for the test statistic?