powered by
This function creates a theme with all elements blank except for axis lines and labels. It can optionally add coordinate axes in the plot.
theme_blank( add_coord = TRUE, xlen_npc = 0.15, ylen_npc = 0.15, xlab = "", ylab = "", lab_size = 12, ... )
A list containing ggplot2 theme objects and annotation objects. If add_coord is TRUE, returns a list with coordinate arrows; otherwise returns a list with theme only.
add_coord
TRUE
Whether to add coordinate arrows. Default is TRUE.
The length of the x-axis arrow in "npc".
The length of the y-axis arrow in "npc".
The label of the x-axis.
The label of the y-axis.
The size of the axis labels.
Arguments passed to the ggplot2::theme.
library(ggplot2) p <- ggplot(mtcars, aes(x = wt, y = mpg, colour = factor(cyl))) + geom_point() p + theme_blank() p + theme_blank(xlab = "x-axis", ylab = "y-axis", lab_size = 16)
Run the code above in your browser using DataLab