powered by
The default theme for scop plot function.
theme_this(aspect.ratio = NULL, base_size = 12, ...)
A ggplot2 theme object (class theme, gg).
theme
gg
Aspect ratio of the panel.
Base font size
Arguments passed to the ggplot2::theme.
library(ggplot2) p <- ggplot( data = mtcars, aes(x = wt, y = mpg, colour = factor(cyl)) ) + geom_point() p + theme_this()
Run the code above in your browser using DataLab