Fast implementation of Fisher's exact test in Rust for Python.
Benchmarks show that this version is about 30x faster than scipy's version when running on a large range of inputs and about 10x faster when running on 1 input:
```asm ---------------------------------------------------------------------------------------------- benchmark: 2 tests ---------------------------------------------------------------------------------------------
testbenchmarkfaster_fischer 59.8543 (1.0) 61.0522 (1.0) 60.5012 (1.0) 0.2816 (1.0) 60.5717 (1.0) 0.3114 (1.0) 3;1 16.5286 (1.0) 17 1
```
Rust:
rust
use faster_fishers::{fishers_exact_with_odds_ratio, Alternative};
let table = [3, 5, 4, 50];
let alternative = Alternative::Less;
let (p_value, odds_ratio) = fishers_exact_with_odds_ratio(&table, alternative).unwrap();
Python:
```python
import numpy as np import fishers lefts, right, twotails = fishers.exact(np.array([1, 3]), np.array([2, 5]), np.array([1, 4]), np.array([5, 50])) lefts array([0.9166666666666647, 0.9963034765672586]) rights array([0.5833333333333326, 0.03970749246529451]) twotails array([1.0, 0.03970749246529451]) ```
cargo build
in the main directory to build the project.docker run --rm -v $(pwd):/io ghcr.io/pyo3/maturin publish -u {USER} -p {PASSWORD}
cargo publish
poetry install
poetry shell
maturin develop
python -c "import faster_fishers; print(dir(faster_fishers))"
To try the library in a different environment:
1. maturin build --release
2. cd folder
3. pip install {wheel_path}.whl
RUSTFLAGS='-C target-cpu=native' maturin develop --release
*python: pytest --benchmark-warmup -m benchmark