# NOT RUN {
df <- download_apple_mtr_data(silent = TRUE, cached = TRUE)
df %>%
dplyr::group_by(date) %>%
dplyr::summarize(
walking = mean(walking, na.rm = TRUE)
) %>%
ggplot2::ggplot(ggplot2::aes(x = date, y = walking)) +
ggplot2::geom_line()
df <- download_apple_mtr_data(type = "country_city", silent = TRUE, cached = TRUE)
df %>%
dplyr::filter(iso3c == "DEU") %>%
ggplot2::ggplot(ggplot2::aes(x = date, y = driving, color = city)) +
ggplot2::geom_line()
# }
Run the code above in your browser using DataLab