View source: R/convert_tables.R
convert_tables | R Documentation |
Accepts a table or matrix or a list of tables and matrices and converts them into dataframe columns.
convert_tables(tab, na_omit = TRUE)
tab |
A table/matrix or a list of tables/matrices. |
na_omit |
Logical; if true, will remove rows with NA. |
A dataframe column.
file <- system.file(
"extdata/input_files",
file = "test.xlsx",
package = "quicR"
)
tabs <- organize_tables(file)
convert_tables(tabs)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.