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.
Arguments
- ...
Passed to
ggplot2::theme.
Examples
library(ggplot2)
ggplot(mtcars, aes(x = wt, y = mpg)) +
geom_point() +
theme_gg0()