Add a single grob, possibly spanning multiple rows or columns.
This only adds grobs into the table - it doesn't affect the table layout in any way. In the gtable model, grobs always fill up the complete table cell. If you want custom justification you might need to define the grob dimension in absolute units, or put it into another gtable that can then be added to the gtable instead of the grob.
gtable_add_grob(x, grobs, t, l, b = t, r = l, z = Inf, clip = "on", name = x$name)
x |
a |
grobs |
a single grob or a list of grobs |
t |
a numeric vector giving the top extent of the grobs |
l |
a numeric vector giving the left extent of the grobs |
b |
a numeric vector giving the bottom extent of the grobs |
r |
a numeric vector giving the right extent of the grobs |
z |
a numeric vector giving the order in which the grobs should be
plotted. Use |
clip |
should drawing be clipped to the specified cells
( |
name |
name of the grob - used to modify the grob name before it's plotted. |
A gtable object with the new grob(s) added
Other gtable manipulation: gtable_add_cols
,
gtable_add_padding
,
gtable_add_rows
,
gtable_add_space
,
gtable_filter
library(grid) gt <- gtable(widths = unit(c(1, 1), 'null'), heights = unit(c(1, 1), 'null')) pts <- pointsGrob(x = runif(5), y = runif(5)) # Add a grob to a single cell (top-right cell) gt <- gtable_add_grob(gt, pts, t = 1, l = 2) # Add a grob spanning multiple cells gt <- gtable_add_grob(gt, pts, t = 1, l = 1, b = 2) plot(gt)
Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.