covidatlas / li

Next-generation serverless crawler for COVID-19 data
Apache License 2.0
57 stars 33 forks source link

Critical: Test counts in US states are missing starting on May 26 #471

Closed jzohrab closed 3 years ago

jzohrab commented 3 years ago

Original issue https://github.com/covidatlas/coronadatascraper/issues/1059, transferred here on Thursday Jul 02, 2020 at 04:37 GMT


Location, date, and short issue description

All US states except for California are missing tested counts.

File

timeseries.csv

Issue details

Starting on May 26, all states except CA have NA for tested. For the following days there are some positive values and then it goes dark for most of June.

Snippet/screenshot

ts <- read_csv(covid.csv.url, col_types=cols_only(level='c',city='c',county='c',state='c',country='c',population='d',date='D',cases='d',deaths='d',tested='d'))
ggplot(filter(ts, country=='United States' & level=='state'), aes(x=date, y=tested, group=state)) + geom_line()

Rplot

jzohrab commented 3 years ago

Hi @dkulp2, following up on this (from original issue https://github.com/covidatlas/coronadatascraper/issues/1059). Has this been fixed in the new reports at https://covidatlas.com/data? We had been missing some data but I believe it's back now. Cheers! jz

jzohrab commented 3 years ago

Dup of https://github.com/covidatlas/li/issues/475.