The goal of plotthemes is to provide some extra plotting themes for ease of use with ggplot2. Primarily aimed at personal use.
And the development version from GitHub with:
# install.packages("devtools")
devtools::install_github("ogsteele/plotthemes")
# this is an example of `theme_test_OGS()`
library(ggplot2)
library(plotthemes)
y <- c(10,10,5,20)
x <- c("A","B","C","D")
dat = data.frame(x,y)
plot = ggplot2::ggplot(dat, ggplot2::aes(x,y)) +
ggplot2::geom_col() +
theme_test_OGS()
plot