arrow (version 0.16.0.2)

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

Value

the input x invisibly.

Examples

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

Run the code above in your browser using DataCamp Workspace