R for Data NBA
2023-12-22
## function () {
## theme_minimal(base_size=14, base_family="Helvetica") %+replace%
## theme(
## # get rid of panel grids
## panel.grid.major = element_line(size = (0.075), colour="grey"),
## panel.grid.minor = element_blank(),
## #panel.border = element_blank(),
## # Change plot and panel background
## plot.background = element_rect(fill = 'antiquewhite', color = 'antiquewhite'),
## panel.background = element_rect(fill = "#f7e0c0", color = 'antiquewhite'),
## plot.title = element_text(size=18, hjust = 0.5),
## plot.subtitle = element_text(size=13, hjust = 0.5),
## plot.caption = element_text(size=8, hjust=c(1, 0))
## )
## }