Add RAC data by hand from Internet Archive.

This commit is contained in:
mattbk
2024-01-09 22:11:31 -06:00
parent 5afc074044
commit 2d3bf77cf8
4 changed files with 11 additions and 1 deletions

View File

@ -25,7 +25,9 @@ d_total <- d %>% filter(State.Territory == "TOTAL")
d_total_long <- d_total %>%
pivot_longer(cols = 3:8,
names_to = "lclass",
values_to = "count")
values_to = "count") %>%
# only keep rows with data so plots look right
filter(!is.na(count))
#### Plots ####
##### Total over time #####