| kable {skimr} | R Documentation |
This is a very simple table generator. It is simple by design. It is not intended to replace any other R packages for making tables.
kable(x, format = NULL, digits = getOption("digits"), row.names = NA,
col.names = NA, align, caption = NULL, format.args = list(),
escape = TRUE, ...)
## S3 method for class 'skim_df'
kable(x, format = NULL, digits = getOption("digits"),
row.names = NA, col.names = NA, align = NULL, caption = NULL,
format.args = list(), escape = TRUE, ...)
## S3 method for class 'summary_skim_df'
kable(x, ...)
x |
An R object, typically a matrix or data frame. |
format |
A character string. Possible values are |
digits |
Maximum number of digits for numeric columns, passed to
|
row.names |
Logical: whether to include row names. By
default, row names are included if |
col.names |
A character vector of column names to be used in the table. |
align |
Column alignment: a character vector consisting of
|
caption |
The table caption. |
format.args |
A list of arguments to be passed to |
escape |
Boolean; whether to escape special characters when producing HTML or LaTeX tables. |
... |
Other arguments (see Examples). |
The original skim_df object.
skim_df: Produce kable output of a skimmed data frame
summary_skim_df: Kable method for a summary_skim_df object