theme_no_axes {ggalign} | R Documentation |
Remove axis elements
Description
Remove axis elements
Usage
theme_no_axes(
axes = "xy",
text = TRUE,
ticks = TRUE,
title = TRUE,
line = FALSE
)
Arguments
axes |
Which axes elements should be removed? A string containing
one or more of |
text |
If |
ticks |
If |
title |
If |
line |
If |
Value
A theme()
object.
Examples
p <- ggplot() +
geom_point(aes(x = wt, y = qsec), data = mtcars)
p + theme_no_axes()
p + theme_no_axes("b")
p + theme_no_axes("l")
[Package ggalign version 1.0.2 Index]