FisherExact icon indicating copy to clipboard operation
FisherExact copied to clipboard

Fisher exact test for mxn contingency table in python

Results 7 FisherExact issues
Sort by recently updated
recently updated
newest added

This simple example fails with the Segmentation fault (core dumped) ### Python 3.9.5 (default, Jun 4 2021, 12:28:51) Type 'copyright', 'credits' or 'license' for more information IPython 7.30.1 -- An...

This simple example fails with the defualt workspace ```python import FisherExact fisher_exact = FisherExact.fisher_exact fisher_exact([[1088, 126, 342, 516, 594, 578, 528, 378, 272, 160, 68, 40, 22, 4, 2], [12,...

In the README, under "Use as a module", the documentation says for `table`: "A 2x2 contingency table. Elements should be non-negative integers". However, in the code, it says "A mxn...

Running fisher_exact() procedure on 2x5 table, getting segmentation fault(core dumped). Contigency matrix: vals a b c d e 0 8472 9541 4581 7998 2755 1 19031 20811 12565 17134 5302...

Running Monte Carlo simulations for more than 2x3: pval = fisher_exact(freqs[:, 0:3], simulate_pval=True) gives an overflow error: OverflowError: Python int too large to convert to C long Running Fisher Exact...

Would it be possible to create a new release based on the latest revision and publish it on PyPi ?