Skip to contents

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()

References

https://github.com/gadenbuie/ggpomological/blob/master/R/theme_pomological.R

See also

Examples

if (FALSE) { # \dontrun{
library(ggplot2)
data <- data.frame(x = 1:10, y = 1:10)
ggplot(data, aes(x, y)) + geom_point() + theme_starfish()
} # }