Metadata-Version: 2.1
Name: epimodels
Version: 0.4.0
Summary: Library of mathematical epidemic models for use in simulation studies and inference
Home-page: https://github.com/fccoelho/epimodels
Author: Flávio Codeço Coelho
Author-email: fccoelho@gmail.com
License: mit
Platform: any
Classifier: Development Status :: 4 - Beta
Classifier: Programming Language :: Python
Requires-Python: >=3.6
License-File: LICENSE.txt
License-File: AUTHORS.rst
Requires-Dist: importlib-metadata; python_version < "3.8"
Requires-Dist: numpy
Requires-Dist: scipy
Provides-Extra: testing
Requires-Dist: pytest; extra == "testing"
Requires-Dist: pytest-cov; extra == "testing"


# Epimodels



This library a simple interface to simulate mathematical epidemic models.
 


## Getting started


Simple SIR simulation

```python
from epimodels.continuous.models import SIR
model = SIR()
model([1000, 1, 0], [0, 50], 1001, {'beta': 2, 'gamma': .1})
model.plot_traces()
```


### Related libraries

For stochastic epidemic models check [this](https://github.com/fccoelho/EpiStochModels).
