Add data, clean up some data, update plots.

This commit is contained in:
mattbk
2024-01-13 21:54:51 -06:00
parent 2af20ea961
commit 7897d08871
7 changed files with 3021 additions and 3013 deletions

View File

@ -16,9 +16,9 @@ unique(d_raw$Date)
# Clean up here if needed
d <- d_raw %>%
mutate(Date = as.Date(Date)) %>%
mutate(Date = as.Date(Date)) #%>%
# Drop Tech alone and leave Tech and Tech Plus
select(-c(Tech, Tech.Plus))
#select(-c(Tech, Tech.Plus))
d_total <- d %>% filter(State.Territory == "TOTAL")