ggplot2 plot theme based on...
Usage
theme_starfish(base_theme = ggplot2::theme_minimal(), ...)
Arguments
- base_theme
A base theme upon which additional theme-specific options are applied
- ...
Fruther arguments passed to
ggplot2::theme()
Examples
if (FALSE) { # \dontrun{
library(ggplot2)
data <- data.frame(x = 1:10, y = 1:10)
ggplot(data, aes(x, y)) + geom_point() + theme_starfish()
} # }