myKable {rmdHelpers} | R Documentation |
Wrapper for kable
Description
A small wrapper for the knitr kable function to allow automated bolding of row and/or column names. Additional functionality may be added/
Usage
myKable(x, row.names = NA, boldRowNames = TRUE, boldColNames = TRUE, ...)
Arguments
x |
Table or matrix to be passed to |
row.names |
Logical: should row names be included?
Defaults to |
boldRowNames |
Logical: should row names be bolded? |
boldColNames |
Logical: should column names be bolded? |
... |
Additional arguments to be passed to |
Details
Currently bolds in markdown format, so needs to be passed through interpreter after running.
Value
A formatted table from kable
Author(s)
Mark Peterson
See Also
Examples
tempTable <- matrix(LETTERS[6:20], nrow = 5)
colnames(tempTable) <- LETTERS[24:26]
row.names(tempTable) <- LETTERS[1:5]
myKable(tempTable)
myKable(tempTable, boldColNames = FALSE)
[Package rmdHelpers version 1.3.1 Index]