Read a table, like read.table, but with annotated factor levels
Source:R/misc.R
read_write_table.RdThe factor levels are annotated like:
# factor-levels: group=A|B|C
Column names are used literally, so check.names defaults to FALSE.
The factor levels are annotated like:
# factor-levels: group=A|B|C
Usage
read_table(file, factor_level_sep = "|", ...)
load_table(file, factor_level_sep = "|", ...)
write_table(x, file, factor_level_sep = "|", ...)
save_table(x, file, factor_level_sep = "|", ...)