Learn R Programming

arrow (version 0.15.1)

write_feather: Write data in the Feather format

Description

Write data in the Feather format

Usage

write_feather(x, sink)

Arguments

x

data.frame or RecordBatch

sink

A file path or an 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