Create a global variable under config.py which handles the countries under study.
For analysis, that should be the variable referenced throughout. That means that changing that variable would change the entire analysis (i.e no hardcoding country lists elsewhere)
In order to easily test different versions, that variable should be dict of "group name": [country list]
Create a global variable under
config.py
which handles the countries under study. For analysis, that should be the variable referenced throughout. That means that changing that variable would change the entire analysis (i.e no hardcoding country lists elsewhere)In order to easily test different versions, that variable should be dict of "group name": [country list]