paleolimbot commented on code in PR #12817: URL: https://github.com/apache/arrow/pull/12817#discussion_r854345187
########## r/R/record-batch.R: ########## @@ -189,3 +189,56 @@ record_batch <- RecordBatch$create #' @export names.RecordBatch <- function(x) x$names() + +#' Convert an object to an Arrow RecordBatch +#' +#' Whereas [record_batch()] constructs a [RecordBatch] from one or more columns, +#' `as_record_batch()` converts a single object to an Arrow [RecordBatch]. +#' +#' @param x An object to convert to an Arrow RecordBatch +#' @param ... Passed to S3 methods +#' @inheritParams record_batch +#' +#' @return A [RecordBatch] +#' @export +#' +#' @examplesIf arrow_available() +#' as_record_batch(data.frame(col1 = 1, col2 = "two")) Review Comment: Added! (Also to the example for `as_arrow_table()`) -- 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]
