get_legend2: Get a legend from a ggplot object

View source: R/plots.R

get_legend2R Documentation

Get a legend from a ggplot object

Description

Get a legend from a ggplot object

Usage

get_legend2(plot, legend = NULL)

Arguments

plot

a ggplot object

legend

NULL, or position ("top")

Value

a grob object, or NULL if no legend found

Examples

library(ggplot2)
p <- ggplot(mtcars, aes(wt, mpg, color = mpg)) +
  geom_point()
legend <- get_legend2(p)
plot(legend)

pcutils documentation built on April 4, 2025, 5:14 a.m.