stack_grobs | R Documentation |
Stack grobs as a new grob with 1 column and multiple rows layout.
stack_grobs(
...,
grobs = list(...),
padding = grid::unit(2, "line"),
vp = NULL,
gp = NULL,
name = NULL
)
... |
grobs. |
grobs |
( |
padding |
( |
vp |
( |
gp |
( |
name |
( |
A grob
.
library(grid)
g1 <- circleGrob(gp = gpar(col = "blue"))
g2 <- circleGrob(gp = gpar(col = "red"))
g3 <- textGrob("TEST TEXT")
grid.newpage()
grid.draw(stack_grobs(g1, g2, g3))
showViewport()
grid.newpage()
pushViewport(viewport(layout = grid.layout(1, 2)))
vp1 <- viewport(layout.pos.row = 1, layout.pos.col = 2)
grid.draw(stack_grobs(g1, g2, g3, vp = vp1, name = "test"))
showViewport()
grid.ls(grobs = TRUE, viewports = TRUE, print = FALSE)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.