Unfortunately there are dots in some location names, for example "St. Gallen", which makes it difficult to separate full_ref into columns. This affects a few thousand rows.
library(tidyverse)
x <- readRDS("./2020-04-05_trendline_long.rds")
filter(x, str_detect(location, fixed(".")))
Nice work on the rest though, I hope to learn how you did the GitHub actions.
Unfortunately there are dots in some location names, for example "St. Gallen", which makes it difficult to separate
full_ref
into columns. This affects a few thousand rows.Nice work on the rest though, I hope to learn how you did the GitHub actions.