Skip to content

Commit

Permalink
change demographics to Jan 1, 2018
Browse files Browse the repository at this point in the history
  • Loading branch information
twallema committed Jun 18, 2024
1 parent 83612ad commit 64ddb5a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tutorials/influenza_1718/data_conversion.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@
data = pd.read_csv(data_dir)
# Age groups in dataset
desired_age_groups = pd.IntervalIndex.from_tuples([(0,5),(5,15),(15,65),(65,120)],closed='left')
# Hardcode Belgian demographics
N = pd.Series(index=desired_age_groups, data=[606938, 1328733, 7352492, 2204478])
# Hardcode Belgian demographics (Jan 1, 2018)
N = pd.Series(index=desired_age_groups, data=[620914, 1306826, 7317774, 2130556])

########################
## Perform conversion ##
Expand Down

0 comments on commit 64ddb5a

Please sign in to comment.