CSSEGISandData / COVID-19

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

Hoonah-Angoon, Alaska has no data for 10/26/20 #3275

Closed thanatos closed 3 years ago

thanatos commented 3 years ago

Hi,

I run a post-processor over the JHU data. It presently assumes that the values in the date columns in the US confirmed cases timeseries data are integers. However, Hoonah-Angoon presently has the empty string in the final column, currently 10/26/20.

Presently, I am looking at this version of the data, which is currently the version pointed to by master.

One way to see this is,

<csse_covid_19_data/csse_covid_19_time_series/time_series_covid19_confirmed_US.csv awk 'NR==1 || NR==81 { print $0 }' | xsv table | less -S

(this requires the very wonderful xsv utility from BurntSushi.) Then, scroll all the way right:

10/23/20  10/24/20  10/25/20  10/26/20
0         0         0         

I've been post-processing for some number of months, and this is the first occurrence of this.

CSSEGISandData commented 3 years ago

Hello @thanatos! Thanks for your reminder. We just added that missing value for Hoonah-Angoon.

thanatos commented 3 years ago

Wow, that was quick! Thank you!