| themes {huxtable} | R Documentation |
These functions quickly set default styles for a huxtable.
theme_plain(ht, position = "left") theme_basic(ht, header_row = TRUE, header_col = TRUE) theme_striped(ht, stripe = grDevices::grey(0.9), header_row = TRUE, header_col = TRUE) theme_article(ht, header_row = TRUE, header_col = TRUE)
ht |
A huxtable object. |
position |
'left', 'centre' or 'right' |
header_row |
Logical: style first row differently? |
header_col |
Logical: style first column differently? |
stripe |
Background colour for alternate rows |
theme_plain is a simple theme with a bold header, a grey striped background, and an outer border.
theme_basic just adds a border for header rows and/or columns.
theme_striped uses different backgrounds for alternate rows, and for headers.
theme_article is similar to the style of many scientific journals.
It sets horizontal lines above and below the table.
The huxtable object, appropriately styled.
ht <- huxtable(a = 1:5, b = 1:5) theme_striped(ht)