Metadata-Version: 2.1
Name: fisher-test-python
Version: 0.2.0
Summary: Fisher exact test for python
Home-page: https://github.com/linewalks/fisher-test-python
Author: Linewalks
Author-email: jungwoo@linewalks.com
License: LGPL-3.0
Platform: UNKNOWN
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: numpy
Requires-Dist: scipy

# fisher test python

## Getting Started

#### Installation

```
pip install fisher-test-python
```

#### Usage

```python
import nump as np
from fisher import fisher_test

ary = np.array([[1,2,3], [2,3,4]])
p_value = fisher_test(ary)

```

## Contact

* Jungwoo - jungwoo@linewalks.com

