Learn R Programming

quicR (version 2.1.0)

convert_tables: 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, na_omit = TRUE)

Value

A dataframe column.

Arguments

tab

A table/matrix or a list of tables/matrices.

na_omit

Logical; if true, will remove rows with NA.

Examples

Run this code
file <- system.file(
  "extdata/input_files",
  file = "test.xlsx",
  package = "quicR"
)
tabs <- organize_tables(file)
convert_tables(tabs)

Run the code above in your browser using DataLab