Write CSV file to disk
write_csv_arrow(x, sink, include_header = TRUE, batch_size = 1024L)
x |
|
---|---|
sink | A string file path, URI, or OutputStream, or path in a file
system ( |
include_header | Whether to write an initial header line with column names |
batch_size | Maximum number of rows processed at a time. Default is 1024. |
The input x
, invisibly. Note that if sink
is an OutputStream,
the stream will be left open.
tf <- tempfile() on.exit(unlink(tf)) write_csv_arrow(mtcars, tf)