theme_hc() provides a minimalist ggplot2 theme with no background or grid lines. Usefull for clean, publication-ready point, bar, line and boxplots among others.
Examples
library(ggplot2)
ggplot2::ggplot(mpg, aes(displ, hwy)) +
ggplot2::geom_point() +
theme_hc()
