A minimal, publication-quality ggplot2 theme following the Annenberg Institute at Brown University visual identity. Uses brand fonts with automatic Google Fonts fallback.
Usage
theme_aib(
base_size = 11,
base_family = NULL,
gridlines = c("none", "x", "y", "xy")
)Value
A ggplot2::theme() object.
Examples
library(ggplot2)
ggplot(mtcars, aes(mpg, wt)) +
geom_point() +
theme_aib()
# Add horizontal gridlines
ggplot(mtcars, aes(mpg, wt)) +
geom_point() +
theme_aib(gridlines = "y")