Parsing options for Arrow file readers
csv_parse_options(delimiter = ",", quoting = TRUE,
quote_char = "\"", double_quote = TRUE, escaping = FALSE,
escape_char = "\\", newlines_in_values = FALSE,
ignore_empty_lines = TRUE, header_rows = 1L)json_parse_options(newlines_in_values = FALSE)
Field delimiter
Whether quoting is used
Quoting character (if quoting
is TRUE
)
Whether a quote inside a value is double-quoted
Whether escaping is used
Escaping character (if escaping
is TRUE
)
Whether values are allowed to contain CR (0x0d
) and LF (0x0a
) characters
Whether empty lines are ignored. If FALSE
, an empty line represents
Number of header rows to skip (including the first row containing column names)