| set_all_borders {huxtable} | R Documentation |
This is a convenience function which sets left, right, top and bottom borders for the specified cells.
set_all_borders(ht, row, col, value, byrow = FALSE)
ht |
A huxtable. |
row |
A row specifier. See |
col |
An optional column specifier. |
value |
A numeric vector or matrix giving border widths in points. Set to 0 for no border. Set to |
byrow |
If |
The modified huxtable.
left_border(), set_outer_borders()
ht <- huxtable(a = 1:3, b = 1:3) set_all_borders(ht, 1:3, 1:2, 1)