Skip to contents

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.

Usage

theme_gg0(...)

Value

A ggplot2 theme object.

Examples

library(ggplot2)
ggplot(mtcars, aes(x = wt, y = mpg)) +
  geom_point() +
  theme_gg0()