dgreiss commented on issue #36247:
URL: https://github.com/apache/arrow/issues/36247#issuecomment-1616912521

   I drafted a PR #36436 for `write_csv_dataset`, and I also investigated if 
`write_tsx_dataset()` and `write_delim_dataset()` could be implemented. The 
available options that get passed to the CSV writer are here: 
https://arrow.apache.org/docs/cpp/api/formats.html#csv-writer . 
   
   There is a `delimiter` option, and it is defined as `Field` delimiter, but 
I'm not entirely sure what that means in this context. If it is the delimiter 
for values, then it should be relatively straightforward to implement it as an 
option to the csv writer. 
   
   Of the options listed for the CSV writer class the package currently accepts 
[these](https://github.com/apache/arrow/blob/575b0957a601ccf208695c336daae142bdb17559/r/R/csv.R#L534-L541C2)
 :
   * `include_header` 
   * `batch_string`
   * `null_string`
   
   It may be worth while exposing the `quoting_style` option as well. 


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to