| set_outer_borders {huxtable} | R Documentation |
This is a convenience function to set a border round the top, bottom, left and right of a group of cells.
set_outer_borders(ht, row, col, value)
ht |
A huxtable |
row |
A row specifier. See |
col |
A column specifier. |
value |
A numeric value for the border width. Set to 0 for no border. |
The modified huxtable.
left_border(), set_all_borders()
ht <- huxtable(a = 1:3, b = 1:3) set_outer_borders(ht, 1) set_outer_borders(ht, 2:3, 1:2, 1)