gtable_add_space {gtable} | R Documentation |
Add row/column spacing.
Description
Adds width
space between the columns or height
space between
the rows, effictvely pushing the existing cells apart.
Usage
gtable_add_col_space(x, width)
gtable_add_row_space(x, height)
Arguments
x |
a gtable object |
width |
a vector of units of length 1 or ncol - 1 |
height |
a vector of units of length 1 or nrow - 1 |
Value
A gtable with the additional rows or columns added
See Also
Other gtable manipulation:
gtable_add_cols()
,
gtable_add_grob()
,
gtable_add_padding()
,
gtable_add_rows()
,
gtable_filter()
Examples
library(grid)
rect <- rectGrob()
rect_mat <- matrix(rep(list(rect), 9), nrow = 3)
gt <- gtable_matrix("rects", rect_mat, widths = unit(rep(1, 3), "null"),
heights = unit(rep(1, 3), "null"))
plot(gt)
# Add spacing between the grobs
# same height between all rows
gt <- gtable_add_row_space(gt, unit(0.5, "cm"))
# Different width between the columns
gt <- gtable_add_col_space(gt, unit(c(0.5, 1), "cm"))
plot(gt)
[Package gtable version 0.3.5 Index]