Returns a simplified ggplot2 theme based on theme_bw()
, with grid lines removed,
black axis text, and no legend title. This theme is useful for producing cleaner, publication-ready plots.
Examples
library(ggplot2)
ggplot(mtcars, aes(x = wt, y = mpg)) +
geom_point() +
theme_gg0()