eitsupi commented on code in PR #13038: URL: https://github.com/apache/arrow/pull/13038#discussion_r865526778
########## r/R/csv.R: ########## @@ -135,6 +135,8 @@ #' write.csv(mtcars, file = tf) #' df <- read_csv_arrow(tf) #' dim(df) +#' # Can specify the encoding of the file +#' df <- read_csv_arrow(tf, read_options = CsvReadOptions$create(encoding = "utf8")) Review Comment: I have removed these lines. Even if we delete the example here, fortunately the pyarrow 8.0.0 documentation has examples of how to use it, so we can look there. https://arrow.apache.org/docs/dev/python/generated/pyarrow.csv.ReadOptions.html#pyarrow.csv.ReadOptions Looking forward to seeing the API refined. -- 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]
