JUNE icon indicating copy to clipboard operation
JUNE copied to clipboard

recovery rate calculation

Open jzanetti opened this issue 1 year ago • 2 comments

Hi JUNE developers:

There are lines of codes defining the probability of person who recovers in the ward (see Link for details), for example,

p[population][sex][age][3] = (
    hospital_rate - hospital_dead_rate
)

Should the max function be applied to ensure that the recovery rate is larger than zero ? For example,

p[population][sex][age][3] = max(
    hospital_rate - hospital_dead_rate, 0
) 

Thank you,

Sijin

jzanetti avatar Apr 23 '23 09:04 jzanetti