Custom ggplot Theme
theme_baseR.RdA minimalist custom ggplot theme with configurable font size and font family.
Examples
library(ggplot2)
# Example plot with the default theme
ggplot(mpg, aes(displ, hwy)) +
geom_point() +
theme_baseR()
# Custom font size and font family
ggplot(mpg, aes(displ, hwy)) +
geom_point() +
theme_baseR(font_size = 14, font_family = "serif")