read_nanoarrow | R Documentation |
Reads connections, file paths, URLs, or raw vectors of serialized Arrow data. Arrow documentation typically refers to this format as "Arrow IPC", since its origin was as a means to transmit tables between processes (e.g., multiple R sessions). This format can also be written to and read from files or URLs and is essentially a high performance equivalent of a CSV file that does a better job maintaining types.
read_nanoarrow(x, ..., lazy = FALSE)
example_ipc_stream()
x |
A |
... |
Currently unused. |
lazy |
By default, |
The nanoarrow package does not currently have the ability to write serialized
IPC data: use arrow::write_ipc_stream()
to write data from R, or use
the equivalent writer from another Arrow implementation in Python, C++,
Rust, JavaScript, Julia, C#, and beyond.
The media type of an Arrow stream is application/vnd.apache.arrow.stream
and the recommended file extension is .arrows
.
A nanoarrow_array_stream
as.data.frame(read_nanoarrow(example_ipc_stream()))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.