Metadata-Version: 2.1
Name: stats_utils
Version: 0.1.1
Summary: Probability and Statistics Utilities library. Currently only Distributions
Author: Kawalpreet Deol
Author-email: 
Description-Content-Type: text/markdown
License-File: LICENSE

# Stats Utils
This package contains modules implementing the Guassian and Binomial distributions.

# Files
`Generaldistribution.py`: Base class for distributions that contains basic distribution properties and methods.

`Guassiandistribution.py`: Implementation of the Gaussian Distribution.

`Binomialdistribution.py`: Implementation of the Binomial Distribution.

# Installation
```python
pip install stats-utils
```

# Testing
Make sure all test files follow the naming convention: `test*.py`

```python
python -m unittest discover -s tests
```

# Source Code
https://github.com/KawalpreetDeol/stats-utils
