theme_nice {jtools} | R Documentation |
ggplot2
themetheme_nice
is designed to work like any other complete theme from
ggplot
. It has a nice appearance.
theme_nice( legend.pos = "right", style = c("white", "light", "dark_blue", "dark_gray"), base_size = 11, base_family = "", base_line_size = base_size/22, base_rect_size = base_size/22 )
legend.pos |
One of |
style |
One of |
base_size |
base font size, given in pts. |
base_family |
base font family |
base_line_size |
base size for line elements |
base_rect_size |
base size for rect elements |
Jacob Long jacob.long@sc.edu
# Create plot with ggplot2 library(ggplot2) plot <- ggplot(mpg, aes(cty, hwy)) + geom_jitter() + theme_nice()