lisphilar / covid19-sir

CovsirPhy: Python library for COVID-19 analysis with phase-dependent SIR-derived ODE models.
https://lisphilar.github.io/covid19-sir/
Apache License 2.0
110 stars 44 forks source link

[New] (Japan data) 3rd shots of vaccination is not included in "Vaccinations" data #969

Closed lisphilar closed 2 years ago

lisphilar commented 2 years ago

Summary

Japan started 3rd shots of vaccination and the number of them is recorded in our data. https://github.com/lisphilar/covid19-sir/tree/master/data However, it is not added to "Vaccinations" data and only 1st/2nd shots are considered currently.

Codes

import covsirphy as cs
loader = cs.DataLoader("input")
jhu_data = loader.jhu()
vaccine_data = loader.vaccine()
snl = cs.Scenario(country="Japan", province=None)
snl.register(jhu_data, extras=[vaccine_data])
snl.records(variables=["Vaccinations"]).tail()

Environment

lisphilar commented 2 years ago

Per #991, "Vaccinations" means the number of total doses of 1st/2nd/3rd.