lemon (version 0.4.9)

guidebox_as_column: Guidebox as a column

Description

Takes a plot or legend and returns a single guide-box in a single column, for embedding in e.g. tables.

Usage

guidebox_as_column(legend, which.legend = 1, add.title = FALSE)

Value

A gtable with keys and labels reordered into a single column and each pair of keys and labels in the same cell.

Arguments

legend

A ggplot2 plot or the legend extracted with g_legend. Do not provide a ggplotGrob as it is indistinguisble from a legend.

which.legend

Integer, a legend can contain multiple guide-boxes (or vice versa?). Use this argument to select which to use.

add.title

Does nothing yet.

See Also

g_legend

Examples

Run this code
library(ggplot2)

p <- ggplot(diamonds, aes(x=x, y=y, colour=cut)) + geom_point()
guidebox_as_column(p)
p <- p + guides(colour=guide_legend(ncol=2, byrow=TRUE))
guidebox_as_column(p)

Run the code above in your browser using DataLab