We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9fe05de commit 2786535Copy full SHA for 2786535
data-raw/state_census.R
@@ -1,7 +1,7 @@
1
library(dplyr)
2
library(covidcast)
3
4
-state_census <- covidcast::state_census %>%
+state_census <- read_csv("https://github.com/cmu-delphi/covidcast/raw/c89e4d295550ba1540d64d2cc991badf63ad04e5/Python-packages/covidcast-py/covidcast/geo_mappings/state_census.csv") %>% # nolint: line_length_linter
5
select(STATE, NAME, POPESTIMATE2019, ABBR) %>%
6
rename(abbr = ABBR, name = NAME, pop = POPESTIMATE2019, fips = STATE) %>%
7
# Left-pad FIPS codes with zeroes to 2 digits, and convert to character
0 commit comments