mattkerlogue / google-covid-mobility-scrape

Script for scraping Google's COVID19 Community Mobility Reports [ARCHIVED]
MIT License
33 stars 14 forks source link

dot separator in full_ref is ambiguous #9

Open nacnudus opened 4 years ago

nacnudus commented 4 years ago

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.

mattkerlogue commented 4 years ago

Good spot. I’ll switch to a pipe or something else.