Write data in the Feather format

write_feather(x, sink)

Arguments

x

data.frame or RecordBatch

sink

A file path or an OutputStream

Examples

# \donttest{ try({ tf <- tempfile() on.exit(unlink(tf)) write_feather(mtcars, tf) }) # }