-
Notifications
You must be signed in to change notification settings - Fork 16
Closed
Labels
Priority-P0Must-do; lab will self-destruct without itMust-do; lab will self-destruct without itdata qualityMissing data, weird data, broken dataMissing data, weird data, broken data
Description
It looks like covidcast is not tracking cases and deaths due to COVID-19 from JHU CSSE for two counties in Alaska that CSSE started tracking in roughly April 2021. We're looking at the geo_values 02063 and 02066 for the following source/signal combinations:
- source: "jhu-csse", signal: "confirmed_incidence_num"
- source: "jhu-csse", signal: "deaths_incidence_num"
Here is example R code returning no results:
> test <- covidcast::covidcast_signal(
+ data_source = "jhu-csse",
+ signal = "confirmed_incidence_num",
+ geo_type = "county",
+ geo_values = c("02066","02063"))
Warning message:
Fetching confirmed_incidence_num from jhu-csse for 2020-01-22 to 2021-10-12 in geography '02066': no results
* Fetching confirmed_incidence_num from jhu-csse for 2020-01-22 to 2021-10-12 in geography '02063': no results
> test <- covidcast::covidcast_signal(
+ data_source = "jhu-csse",
+ signal = "deaths_incidence_num",
+ geo_type = "county",
+ geo_values = c("02066","02063"))
Warning message:
Fetching deaths_incidence_num from jhu-csse for 2020-01-22 to 2021-10-12 in geography '02066': no results
* Fetching deaths_incidence_num from jhu-csse for 2020-01-22 to 2021-10-12 in geography '02063': no results
As an example, here is a link to the data file for cases at CSSE, which contains values for these counties.
Would it be possible to add past data for these counties in retrospectively?
Metadata
Metadata
Assignees
Labels
Priority-P0Must-do; lab will self-destruct without itMust-do; lab will self-destruct without itdata qualityMissing data, weird data, broken dataMissing data, weird data, broken data