Example Usage

Importing the module

"""Import all assets for the model"""
from tiered_antibiotic_resistance_model import *

Running the model

"""Run and draw a graph of the model with the default parameters"""
run_and_output()

Changing parameters and settings in-line

"""Change the number of timesteps parameter and the graph type setting,
then run the model"""
Params.NUM_TIMESTEPS = 100
Settings.GRAPH_TYPE = "stackplot"
run_and_output()