easy_remove_legend: Easily remove legend(s)

View source: R/legend.R

easy_remove_legendR Documentation

Easily remove legend(s)

Description

With no argument, will remove all legends. Provide the name(s) of specific aesthetic to remove only certain legends.

Usage

easy_remove_legend(..., teach = FALSE)

Arguments

...

optional name(s) specific aesthetics for which to remove the legend

teach

print longer equivalent ggplot2 expression?

Value

either a theme object or a guidesobject, both of which can be used in ggplot2 calls

Author(s)

Alicia Schep

Examples


library(ggplot2)

# Remove all legends
ggplot(mtcars, aes(wt, mpg, colour = cyl, size = hp)) +
  geom_point() + easy_remove_legend()

# remove just size legend
ggplot(mtcars, aes(wt, mpg, colour = cyl, size = hp)) +
  geom_point() + easy_remove_legend("size")

# can also use:
ggplot(mtcars, aes(wt, mpg, colour = cyl, size = hp)) +
  geom_point() + easy_remove_legend(size)

# Remove more than one
ggplot(mtcars, aes(wt, mpg, colour = cyl, size = hp)) +
  geom_point() + easy_remove_legend(size, color)

ggeasy documentation built on March 31, 2023, 10:34 p.m.