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