Metadata-Version: 2.1
Name: epidemik
Version: 0.0.21
Summary: A package to simulate compartmental epidemic models
Author-email: Bruno Gonçalves <bgoncalves@data4sci.com>
Project-URL: Homepage, https://github.com/DataForScience/epidemik
Project-URL: Issues, https://github.com/DataForScience/epidemik/issues
Project-URL: Documentation, https://epidemik.readthedocs.io/
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: matplotlib>=3.3
Requires-Dist: networkx>=3
Requires-Dist: numpy>=1.20
Requires-Dist: pandas>=2.0
Requires-Dist: scipy>=1.10
Requires-Dist: tqdm>=4

<center>
<img src="https://raw.githubusercontent.com/DataForScience/epidemik/main/images/epidemik.png" /></center>

# epidemik

Compartmental Epidemic Models in Python


---

## Table of contents[![](https://raw.githubusercontent.com/DataForScience/epidemik/main/images/pin.svg)](#toc)
- [Installation](#installation)
- [Tech Stack](#tech)
- [Usage](#usage)
- [Contributing](#contributing)
- [License](#license)

---

## Installation[![](https://raw.githubusercontent.com/DataForScience/epidemik/main/images/pin.svg)](#installation)

Use the package manager [pip](https://pip.pypa.io/en/stable/) to install epidemik.

```bash
pip install epidemik
```

<div align="right">[ <a href="#table-of-contents">↑ Back to top ↑</a> ]</div>

---

## Tech Stack[![](https://raw.githubusercontent.com/DataForScience/epidemik/main/images/pin.svg)](#tech)


Here's a brief high-level overview of the tech stack the `epidemik` package uses:

- The model is implemented as a directed multigraph using [networkx](https://networkx.org/)
- Ordinary Differential Equations are numerically integrated using [scipy](https://scipy.org/)
- Random numbers are generated by [numpy](https://numpy.org/)
- Model structure visualizations rely on [matplotlib](https://matplotlib.org/)
- Progress bars generated by [tqdm](https://tqdm.github.io/)


<div align="right">[ <a href="#table-of-contents">↑ Back to top ↑</a> ]</div>

---


## Usage[![](https://raw.githubusercontent.com/DataForScience/epidemik/main/images/pin.svg)](#usage)

`epidemik` provides three main modules, `EpiModel`, `NetworkEpiModel` and `MetaEpiModel`, usually imported directly from the `epidemik` package using the module name

```python
from epidemik import EpiModel
```

- __EpiModel__ -e Simple compartmental model in a homogeneously mixed population.
- __NetworkEpiModel__ - Compartmental model on a network where nodes interact only along edges connecting them.
- __MetaEpiModel__ - Meta population model where populations interact with one another along the edges of a network. Each sub-population has it's own internal __EpiModel__ instance.

To instantiate a new compartmental model we just need to create a `EpiModel` object and add the relevant transitions:

```python
beta = 0.2
mu = 0.1

SIR = EpiModel()
SIR.add_interaction('S', 'I', 'I', beta)
SIR.add_spontaneous('I', 'R', mu)
```

This fully defines the model. We can get a textual representation of the model using
```python
print(SIR)
```

resulting in a simple description of hte model structure.

    Epidemic Model with 3 compartments and 2 transitions:

	S + I = I 0.200000
	I -> R 0.100000

	R0=2.00

or a graphical representation by calling `draw_model()`:

```python
SIR.draw_model()
```

<img src="https://raw.githubusercontent.com/DataForScience/epidemik/main/images/SIR.png" />

The models value of the Basic Reproductive Number (R~0~) can be determined using the `R0()` function:

```python
SIR.R0()
```

There are two ways to explore the dynamics of the model, each with it's corresponding method. 

To integrate numerically the Ordinary Differential Equations that describe the model dynamics, we can call the `integrate()` method. The first argument is the number of time steps to integrate over and the remaining arguments are the initial populations of each compartment.

```python
N = 10_000
I0 = 10

SIR.integrate(365, S=N-I0, I=I0, R=0)
```

The results of the integration are stored in the `values_` field. A quick visualization of the results can be obtained using:


```python
SIR.plot()
```

which produces:

<img src="https://raw.githubusercontent.com/DataForScience/epidemik/main/images/SIR_results.png" />

<div align="right">[ <a href="#table-of-contents">↑ Back to top ↑</a> ]</div>

---

## Contributing[![](https://raw.githubusercontent.com/DataForScience/epidemik/main/images/pin.svg)](#contributing)

Pull requests are welcome. For major changes, please open an issue first
to discuss what you would like to change.

Please make sure to update tests as appropriate.

Join our project and provide assistance by:
* Checking out the list of [open issues](https://github.com/DataForScience/epidemik/issues?q=is%3Aissue+is%3Aopen+label%3A%22help+wanted%22) where we need help.
* If you need new features, please open a [new issue](https://github.com/DataForScience/epidemik/issues) or start a [discussion](https://github.com/DataForScience/epidemik/discussions).

 Contact us for the feedback or new ideas.

<div align="right">[ <a href="#table-of-contents">↑ Back to top ↑</a> ]</div>

---

## Spread The Word[![](https://raw.githubusercontent.com/DataForScience/epidemik/main/images/pin.svg)](#spread)

If you want to say thank you and/or support active development of the `epidemik` package:

- Add a GitHub star [![epidemik](https://img.shields.io/github/stars/DataForScience/epidemik.svg?style=social&label=Star%20epidemik)](https://github.com/DataForScience/epidemik/) to the repository to encourage contributors and helps to grow our community.
- Tweet about the project on your Twitter!
	- Tag [@data4sci](https://twitter.com/data4sci) and/or [@bgoncalves](https://twitter.com/bgoncalves)

Thank you so much for your interest in growing our community!


---

## License[![](https://raw.githubusercontent.com/DataForScience/epidemik/main/images/pin.svg)](#license)

`epidemik` is free and open-source software licensed under the [MIT License](https://choosealicense.com/licenses/mit/) [2024]  - Bruno Gonçalves, Data For Science, Inc. Please have a look at the [LICENSE.md](LICENSE) for more details.

<div align="right">[ <a href="#table-of-contents">↑ Back to top ↑</a> ]</div>

