easy_remove_axes | R Documentation |
easy_remove_axes by default removes both axes, but can remove only x or y if "x" or "y" is given to the 'which' argument
easy_remove_axes(
which = c("both", "x", "y"),
what = c("ticks", "title", "text", "line"),
teach = FALSE
)
easy_remove_y_axis(what = c("ticks", "title", "text", "line"), teach = FALSE)
easy_remove_x_axis(what = c("ticks", "title", "text", "line"), teach = FALSE)
which |
which axis or axes to remove, by default "both" |
what |
axis components to remove
( |
teach |
print longer equivalent |
easy_remove_x_axis and easy_remove_y_axis remove just the x or y axis, respectively.
a theme
object which can be used in
ggplot2
calls
Alicia Schep
library(ggplot2)
# Remove all axes
ggplot(mtcars, aes(wt, mpg)) +
geom_point() + easy_remove_axes()
# remove just x axis
ggplot(mtcars, aes(wt, mpg)) +
geom_point() + easy_remove_x_axis()
# can also use:
ggplot(mtcars, aes(wt, mpg)) +
geom_point() + easy_remove_axes("x")
# Remove y axis
ggplot(mtcars, aes(wt, mpg)) +
geom_point() + easy_remove_y_axis()
# Remove just the ticks
# Remove y axis
ggplot(mtcars, aes(wt, mpg)) +
geom_point() + easy_remove_y_axis(what = "ticks")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.