| kbl.default | R Documentation |
Calls the existing kbl implementation.
## Default S3 method:
kbl(
x,
format,
digits = getOption("digits"),
row.names = NA,
col.names = NA,
align,
caption = NULL,
label = NULL,
format.args = list(),
escape = TRUE,
table.attr = getOption("knitr.table.html.attr", ""),
booktabs = FALSE,
longtable = FALSE,
tabular = if (longtable) "longtable" else "tabular",
valign = if (tabular %in% c("tabularx", "xltabular")) "{\\linewidth}" else "[t]",
position = "",
centering = TRUE,
vline = getOption("knitr.table.vline", if (booktabs) "" else "|"),
toprule = getOption("knitr.table.toprule", if (booktabs) "\\toprule" else
"\\hline"),
bottomrule = getOption("knitr.table.bottomrule", if (booktabs) "\\bottomrule" else
"\\hline"),
midrule = getOption("knitr.table.midrule", if (booktabs) "\\midrule" else
"\\hline"),
linesep = if (booktabs) c("", "", "", "", "\\addlinespace") else "\\hline",
caption.short = "",
table.envir = if (!is.null(caption)) "table",
...
)
x |
Object to render. |
format, digits, row.names, col.names, align, caption, label |
Arguments
passed to |
format.args, escape, table.attr, booktabs, longtable, tabular, valign |
Arguments passed to |
position, centering, vline, toprule, bottomrule, midrule, linesep |
Arguments passed to |
caption.short, table.envir |
Arguments passed to
|
... |
Additional arguments passed to |
A kable object.
kbl
Other gridtable:
as.data.frame.gridtable(),
as_calibrated(),
as_calibrated.data.frame(),
as_gridtable(),
as_gridtable.character(),
as_gridtable.data.frame(),
kbl(),
kbl.calibrated(),
kbl.gridtable(),
print.gridtable()
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.