convert_tables {quicR} | R Documentation |
Convert tables into a single column in a dataframe.
Description
Accepts a table or matrix or a list of tables and matrices and converts them into dataframe columns.
Usage
convert_tables(tab)
Arguments
tab |
A table/matrix or a list of tables/matrices. |
Value
A dataframe column.
Examples
file <- system.file(
"extdata/input_files",
file = "test.xlsx",
package = "quicR"
)
tabs <- organize_tables(file)
convert_tables(tabs)
[Package quicR version 1.0.2 Index]