powered by
Read and write feather files.
read_feather(path, columns = NULL)write_feather(x, path)
write_feather(x, path)
Both functions return a tibble/data frame. write_feather
write_feather
invisibly returns x (so you can use this function in a pipeline).
x
Path to feather file
Columns to read (names or indexes). Default: Read all columns.
A data frame to write to disk
mtcars2 <- read_feather(feather_example("mtcars.feather")) mtcars2
Run the code above in your browser using DataLab