You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Replace with morbidity buffer (I guess incorrectly named age_morbidity_multipliers), let's call it people_morbidity
symptomatic_prob = cov_params.age_morbidity_multipliers[ #TODO ask Hadrien, now we use "age_morbidity_multipliers", rather than symptomatic_probs
min(math.floor(people_ages[i] / 10), 8)
]
if people_obesity[i] > 2:
symptomatic_prob = symptomatic_prob * cov_params.symptomatic_multiplier #TODO here we will use symptomatic_multiplier, rather than overweight_sympt_mplier
Replace with:
symptomatic_prob = people_morbidity[i]
The text was updated successfully, but these errors were encountered:
uatk-aspics/aspics/simulator.py
Line 283 in bf59262
Replace with morbidity buffer (I guess incorrectly named
age_morbidity_multipliers
), let's call itpeople_morbidity
Replace with:
The text was updated successfully, but these errors were encountered: