powered by
Specifies theme for a plot with multiple panels.
theme_panel(show_text = TRUE, show_ticks = TRUE)
Theme for a specific panel.
A logical value that controls text display on the y axis. Default is TRUE.
TRUE
A logical value that controls ticks display on the y axis. Default is TRUE.
library(ggplot2) p <- ggplot(mpg, aes(displ, hwy, colour = class)) + geom_point() p p + theme_panel()
Run the code above in your browser using DataLab