write.tbl {cmapR} | R Documentation |
data.frame
to a tab-delimited text fileWrite a data.frame
to a tab-delimited text file
write.tbl(...) write_tbl(tbl, ofile, ...)
... |
additional arguments passed on to |
tbl |
the |
ofile |
the desired file name |
This method simply calls write.table
with some
preset arguments that generate a unquoated, tab-delimited file
without row names.
silently returns NULL
## Not run: write_tbl(cdesc_char, "col_meta.txt") ## End(Not run)