To make everything look a bit nicer, we opt for Arial Narrow, white backgrounds and no tick marks.
theme_selby(base_size = 11, base_family = "Arial Narrow")
base_size | base font size |
---|---|
base_family | base font family |
# NOT RUN { library(ggplot2) ggplot(iris) + aes(Petal.Width, Petal.Length, colour = Species) + geom_point() + ggtitle("Example plot of Fisher's iris data", subtitle = "Coloured by species of iris") + theme_selby() # }