| rowspan {huxtable} | R Documentation |
Functions to get or set the row span property of huxtable table cells.
rowspan(ht) rowspan(ht) <- value set_rowspan(ht, row, col, value, byrow = FALSE)
ht |
A huxtable. |
value |
An integer vector or matrix of integers. Set to |
row |
A row specifier. See |
col |
An optional column specifier. |
byrow |
If |
For rowspan, the rowspan attribute.
For set_rowspan, the ht object.
ht <- huxtable(a = 1:3, b = 1:3) rowspan(ht)[1, 1] <- 2 rowspan(ht) print_screen(ht)