Rotate text within cells
Numbers represent degrees to rotate text anti-clockwise:
rotation(ht) rotation(ht) <- value set_rotation(ht, row, col, value ) map_rotation(ht, row, col, fn)
ht |
A huxtable. |
row |
A row specifier. See rowspecs for details. |
col |
An optional column specifier. |
fn |
A mapping function. See mapping-functions for details. |
value |
A numeric vector or matrix. Set to |
0 is the default;
90 is going upwards, for left-to-right languages;
270 is going downwards.
You will probably need to set col_width()
and row_height()
explicitly
to achieve a nice result, in both HTML and LaTeX.
rotation()
returns the rotation
property.
set_rotation()
returns the modified huxtable.
rotation(jams) <- 90 rotation(jams) jams2 <- set_rotation(jams, 270) rotation(jams2) jams3 <- set_rotation(jams, 2:3, 1, 270) rotation(jams3) jams4 <- map_rotation(jams, by_rows( 270, 90) ) rotation(jams4)
Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.