RWrapper | R Documentation |
Wrapper for reading/writing table/csv files into/from a data frame with sensible defaults.
read_tcsv(
file,
type = "tsv",
header = TRUE,
quote = "",
sep = NULL,
row.names,
col.names,
comment.char = "",
stringsAsFactors = FALSE,
fileEncoding = "UTF-8",
...
)
write_tcsv(
x,
file = "tmp",
type = "tsv",
append = FALSE,
quote = FALSE,
sep = NULL,
col.names = TRUE,
row.names = FALSE,
fileEncoding = "UTF-8",
...
)
file |
file's full name to read in or write to |
type |
file type, either "tsv" or "csv" |
... |
see more at |
x |
typically a data frame or tibble |
Yujie Liu
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.