| row_height {huxtable} | R Documentation |
Functions to get or set the row heights property of huxtable rows.
row_height(ht) row_height(ht) <- value set_row_height(ht, row, value)
ht |
A huxtable. |
value |
A vector. |
row |
A row specifier. See |
If character, value must contain valid CSS or LaTeX lengths. If numeric, in HTML, values are scaled to 1 and treated as proportions of the table height. In LaTeX, they are
treated as proportions of the text height (\textheight).
For row_height, the row_height attribute.
For set_row_height, the ht object.
Other row/column heights: col_width
ht <- huxtable(a = 1:3, b = 1:3) row_height(ht) <- c(.2, .1, .1) row_height(ht)