toKable {tables} | R Documentation |
tabular
object to knitr_kable
format.
Converts the output of the tabular
and related
functions to a format consistent with the output of the
kable
function, so that it can be
customized using the kableExtra package.
toKable(table, format = getKnitrFormat(), booktabs = TRUE) getKnitrFormat(default = "latex")
table |
An object of class |
format |
The type of |
booktabs |
Should the table be rendered in |
default |
The default type of output if not running in a knitr document. |
An object of class knitr_kable
, suitable for passing
to functions in the kableExtra package.
if (requireNamespace("kableExtra")) { tab <- tabular( (Species + 1) ~ (n=1) + Format(digits=2)* (Sepal.Length + Sepal.Width)*(mean + sd), data=iris ) kableExtra::kable_styling(toKable(tab), latex_options = "striped") }