powered by
A small wrapper for the knitr kable function to allow automated bolding of row and/or column names. Additional functionality may be added/
myKable(x, row.names = NA, boldRowNames = TRUE, boldColNames = TRUE, ...)
A formatted table from kable
kable
Table or matrix to be passed to kable
Logical: should row names be included? Defaults to NULL which includes row names if they are not just numeric in order.
NULL
Logical: should row names be bolded?
Logical: should column names be bolded?
Additional arguments to be passed to kable
Mark Peterson
Currently bolds in markdown format, so needs to be passed through interpreter after running.
tempTable <- matrix(LETTERS[6:20], nrow = 5) colnames(tempTable) <- LETTERS[24:26] row.names(tempTable) <- LETTERS[1:5] myKable(tempTable) myKable(tempTable, boldColNames = FALSE)
Run the code above in your browser using DataLab