Apache Arrow defines two formats forserializing data for interprocess communication (IPC):a "stream" format and a "file" format, known as Feather.read_ipc_stream()andread_feather() read those formats, respectively.
Arguments
- file
A character file name or URI, connection,
rawvector, anArrow input stream, or aFileSystemwith path (SubTreeFileSystem).If a file name or URI, an ArrowInputStream will be opened andclosed when finished. If an input stream is provided, it will be leftopen.- as_data_frame
Should the function return a
tibble(default) oran ArrowTable?- ...
extra parameters passed to
read_feather().
Value
Atibble ifas_data_frame isTRUE (the default), or anArrowTable otherwise
See also
write_feather() for writing IPC files.RecordBatchReader for alower-level interface.