Apply a theme to all your ggplots
code
beginner
r
tips
If you’re applying the same theme to all your graphs, set it globally instead e.g. theme_set(ggplot2::theme_minimal())
. If you have a lot of custom changes to your theme, throw those into a function and set that to the global theme.