From 969d4ea2b2fda30d11945f0d113ad6bebc6b3cbb Mon Sep 17 00:00:00 2001 From: Matthew Ghosh Date: Thu, 5 Dec 2024 19:42:06 +0000 Subject: [PATCH] Changed some comments and import statements. --- python_examples/NI_example/NI_flow.py | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/python_examples/NI_example/NI_flow.py b/python_examples/NI_example/NI_flow.py index 280e9a08..b808bef0 100644 --- a/python_examples/NI_example/NI_flow.py +++ b/python_examples/NI_example/NI_flow.py @@ -1,21 +1,16 @@ # -# Example simulation script running with Ireland parameters +# Example simulation script running with Northern Ireland parameters # Incorporates both age and spatial stratification. +# We also record secondary infections, serial intervals and generation times. # import os -import sys import logging import pandas as pd import matplotlib.pyplot as plt import pyEpiabm as pe -# Add plotting functions to path -# sys.path.append(os.path.join(os.path.dirname(__file__), os.path.pardir, -# "./age_stratified_example")) -# from age_stratified_plot import Plotter # noqa - # Setup output for logging file logging.basicConfig(filename='sim.log', filemode='w+', level=logging.DEBUG, format=('%(asctime)s - %(name)s'