library(tidyverse)
bikes <- readr::read_csv(
here::here("data", "london-bikes-custom.csv"),
col_types = "Dcfffilllddddc"
)
#bikes$season <- factor(bikes$season, levels = c("spring", "summer", "autumn", "winter"))
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(),
legend.position = "top"
)