Metadata-Version: 2.1
Name: bbprop
Version: 0.0.3
Summary: Hypothesis test for difference of beta-binomial proportions
Home-page: https://github.com/anthony-aylward/bbprop.git
Author: Anthony Aylward
Author-email: aaylward@eng.ucsd.edu
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
Requires-Dist: bbpmf
Requires-Dist: scipy

# bbprop
Test for difference of beta-binomial proportions

## Installation

```sh
pip3 install bbprop
```
or
```
pip3 install --user bbprop
```

## Examples

```python
from bbprop import bbprop_cdf, bbprop_test
help(bbprop_cdf)
help(bbprop_test)
bbprop_cdf(0.1, [30, 12], [4, 5], [6, 5])
bbprop_test(0.1, [30, 12], [4, 5], [6, 5])
```


