fwrite2 {bigreadr} | R Documentation |
Write a data frame to a text file
Description
Write a data frame to a text file
Usage
fwrite2(x, file = tempfile(), ..., quote = FALSE,
nThread = getOption("bigreadr.nThread"))
Arguments
x |
Data frame to write. |
file |
Path to the file that you want to write to.
Defaults uses |
... |
Other arguments to be passed to data.table::fwrite. |
quote |
Whether to quote strings (default is |
nThread |
Number of threads to use. Default uses all threads minus one. |
Value
Input parameter file
, invisibly.
Examples
tmp <- fwrite2(iris)
iris2 <- fread2(tmp)
all.equal(iris2, iris) ## fread doesn't use factors
[Package bigreadr version 0.2.5 Index]