Python version of Fisher's exact test.
Based on old FORTRAN codes from
pip install fisher-test-python
import nump as np
from fisher import fisher_test
ary = np.array([[1,2,3], [2,3,4]])
p_value = fisher_test(ary)
- Chae, Jungwoo - sector.rest@kakaohealthcare.com