Hi, when I run Fisher's exact test. The print p-value is differenct from the results's p-value.
For example, in print, the p-value < 2.2e-16. However, the jk$p.value is 1.899826e-32.
Is there any thing wrong in the function? Thank you.
> fm_dn
Down No
Yes 281 326
No 4074 13090
jk = janitor::fisher.test(fm_dn)
> jk
Fisher's Exact Test for Count Data
data: fm_dn
p-value < 2.2e-16
alternative hypothesis: true odds ratio is not equal to 1
95 percent confidence interval:
2.343308 3.271687
sample estimates:
odds ratio
2.769178
> jk$p.value
[1] 1.899826e-32
Hi, when I run Fisher's exact test. The print p-value is differenct from the results's p-value. For example, in print, the p-value < 2.2e-16. However, the jk$p.value is 1.899826e-32. Is there any thing wrong in the function? Thank you.