library(tidyverse)
bikes <- readr::read_csv(
here::here("data", "london-bikes-custom.csv"),
col_types = "Dcfffilllddddc"
)
bikes$season <- forcats::fct_inorder(bikes$season)
theme_set(theme_light(base_size = 14, base_family = "Roboto Condensed"))
theme_update(
panel.grid.minor = element_blank(),
plot.title = element_text(face = "bold"),
legend.position = "top",
plot.title.position = "plot"
)
invisible(Sys.setlocale("LC_TIME", "C"))