ggplot theme with larger font sizes

You can set theme options globally for each session with theme_set()

library(ggplot2)

theme_set(
    theme_classic(base_size = 25)
)


ggplot(mtcars, aes(wt, mpg)) +
    geom_point() +
    labs(title = "Fuel economy declines as weight increases")

2 Likes