A Custom ggplot2 Theme for Publication-Ready Plots
A Custom ggplot2 Theme for Publication-Ready Plots
This theme provides a clean, polished look for ggplot2 plots, with a focus on readability and aesthetics. It includes a custom color palette and formatting for titles, axes, and legends.
snazzieR.theme()
Returns
A ggplot2 theme object.
Examples
library(ggplot2)ggplot(mtcars, aes(x = wt, y = mpg))+ geom_point()+ snazzieR.theme()