4 创建 Arrow 对象
4.4 手动从 R 对象创建 RecordBatch。
您希望将 R 中的现有数据框转换为 Arrow RecordBatch 对象。
4.4.1 解决方案
# Create an example data frame
<- tibble::tibble(group = c("A", "B", "C"), score = c(99, 97, 99))
my_tibble # Convert to Arrow RecordBatch
<- record_batch(my_tibble)
my_record_batch # View RecordBatch
my_record_batch
## RecordBatch
## 3 rows x 2 columns
## $group <string>
## $score <double>