library(ggplot2)
library(dplyr)
library(stringr)
bikes <- readr::read_csv(
here::here("data", "london-bikes-custom.csv"),
col_types = "Dcfffilllddddc"
)
theme_set(theme_light(base_size = 14, base_family = "Asap SemiCondensed"))
theme_update(
panel.grid.minor = element_blank(),
plot.title = element_text(face = "bold"),
plot.title.position = "plot"
)