theme_panel {forestly} | R Documentation |
Theme function for plot with multiple panels
Description
Specifies theme for a plot with multiple panels.
Usage
theme_panel(show_text = TRUE, show_ticks = TRUE)
Arguments
show_text |
A logical value that controls text display on the y axis.
Default is |
show_ticks |
A logical value that controls ticks display on the y axis.
Default is |
Value
Theme for a specific panel.
Examples
library(ggplot2)
p <- ggplot(mpg, aes(displ, hwy, colour = class)) +
geom_point()
p
p + theme_panel()
[Package forestly version 0.1.1 Index]