CSSEGISandData / COVID-19

Novel Coronavirus (COVID-19) Cases, provided by JHU CSSE
https://systems.jhu.edu/research/public-health/ncov/
29.13k stars 18.43k forks source link

Does number of confirmed cases include #deaths and #recovered? #1271

Open Ling-Hong-symphonyrm opened 4 years ago

Ling-Hong-symphonyrm commented 4 years ago

Is it true that #Confirmed cases = #infectious + #death + #recovered? Or they are separate numbers?

Maanuj-Vora commented 4 years ago

Yes, confirmed cases does include deaths and recovered. To get the active cases, do the following

active_cases = (confirmed_cases - deaths) - recovered