Add column or row names
Add a first row of column names, or a first column of row names, to the huxtable.
add_colnames(ht, ...) ## S3 method for class 'huxtable' add_colnames(ht, rowname = NULL, ...) add_rownames(ht, ...) ## S3 method for class 'huxtable' add_rownames(ht, colname = "rownames", preserve_rownames = TRUE, ...)
ht |
A huxtable. |
... |
Arguments passed to methods. |
rowname |
Optional row name for the new row of column names. |
colname |
Column name for the new column of row names. |
preserve_rownames |
Preserve existing row names. |
Note that add_colnames
will change the mode of all columns to character. Also note that it will
move your rows down by one: what was row 1 will now be row 2, and the column names will now be row 1.
add_colnames
preserves column names. add_rownames
only preserves them if asked to.
The modified object.
ht <- huxtable( First = rnorm(5), Second = rnorm(5) ) add_rownames(ht) add_colnames(ht) # Out by 1: add_rownames(add_colnames(ht)) # Better: add_colnames(add_rownames(ht)) # Alternatively: add_colnames(add_rownames(ht, ""))
Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.