
Write data in the Feather format
write_feather(data, stream)
data.frame
or arrow::RecordBatch
A file path or an arrow::io::OutputStream
# NOT RUN {
try({
tf <- tempfile()
on.exit(unlink(tf))
write_feather(mtcars, tf)
})
# }
Run the code above in your browser using DataLab