Learn R Programming

arrow (version 0.14.1)

write_feather: Write data in the Feather format

Description

Write data in the Feather format

Usage

write_feather(data, stream)

Arguments

data

data.frame or arrow::RecordBatch

stream

A file path or an arrow::io::OutputStream

Examples

Run this code
# NOT RUN {
try({
  tf <- tempfile()
  on.exit(unlink(tf))
  write_feather(mtcars, tf)
})
# }

Run the code above in your browser using DataLab