guidebox_as_column | R Documentation |
Takes a plot or legend and returns a single guide-box in a single column, for embedding in e.g. tables.
guidebox_as_column(legend, which.legend = 1, add.title = FALSE)
legend |
A ggplot2 plot or the legend extracted with |
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. |
A gtable
with keys and labels reordered into
a single column and each pair of keys and labels in the same cell.
g_legend
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)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.