ECheynet / SEIR

Generalized SEIR Epidemic Model (fitting and computation)
BSD 3-Clause "New" or "Revised" License
86 stars 45 forks source link

US States #4

Closed jeangeoffroy closed 4 years ago

jeangeoffroy commented 4 years ago

Fantastic code. Unfortunately I'm a rookie and need help modeling US states. The granularity is not available (from what i can tell) in the time series data but there is data in the daily reports. What adjustments do I need to make to the code to model Illinois (US state), for example?

ECheynet commented 4 years ago

Thank! All you need is the daily values of recovered, confirmed and deceased cases. Once you have enough days of data, you can apply the fitting algorithm. Be careful not to apply any fitting if you have a low number of confirmed cases (they lead to a bad fit).

jeangeoffroy commented 4 years ago

Thank you.