powered by
write_ipc_stream() and write_feather() write data to a sink and return the data (data.frame, RecordBatch, or Table) they were given. This function wraps those so that you can serialize data to a buffer and access that buffer as a raw vector in R.
write_ipc_stream()
write_feather()
data.frame
RecordBatch
Table
raw
write_to_raw(x, format = c("stream", "file"))
data.frame, RecordBatch, or Table
one of c("stream", "file"), indicating the IPC format to use
c("stream", "file")
A raw vector containing the bytes of the IPC serialized data.
# NOT RUN { # The default format is "stream" mtcars_raw <- write_to_raw(mtcars) # }
Run the code above in your browser using DataLab