vroom_write_lines {vroom} | R Documentation |
Write lines to a file
Description
Write lines to a file
Usage
vroom_write_lines(
x,
file,
eol = "\n",
na = "NA",
append = FALSE,
num_threads = vroom_threads()
)
Arguments
x |
A character vector. |
file |
File or connection to write to. |
eol |
The end of line character to use. Most commonly either |
na |
String used for missing values. Defaults to 'NA'. |
append |
If |
num_threads |
Number of threads to use when reading and materializing vectors. If your data contains newlines within fields the parser will automatically be forced to use a single thread only. |
[Package vroom version 1.6.5 Index]