Skip to content

Latest commit

 

History

History
25 lines (12 loc) · 404 Bytes

README.md

File metadata and controls

25 lines (12 loc) · 404 Bytes

Epimodels

This library a simple interface to simulate mathematical epidemic models.

Getting started

Simple SIR simulation

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.