R/feather.R
write_feather.Rd
Write data in the Feather format
write_feather(x, sink)
data.frame or RecordBatch
data.frame
A file path or an OutputStream
# \donttest{ try({ tf <- tempfile() on.exit(unlink(tf)) write_feather(mtcars, tf) }) # }