| read_feather | R Documentation |
Read and write feather files.
read_feather(path, columns = NULL, ...)
write_feather(x, path, version = 1, ...)
path |
Path to feather file |
columns |
Columns to read (names or indexes), or a
tidy selection specification
of columns, as used in |
... |
Additional arguments passed to the |
x |
A data frame to write to disk |
version |
integer in |
Both functions return a tibble/data frame. write_feather
invisibly returns x (so you can use this function in a pipeline).
mtcars2 <- read_feather(feather_example("mtcars.feather"))
mtcars2
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.