Read and write feather files.
Read and write feather files.
read_feather(path, columns = NULL) write_feather(x, path)
| path | Path to feather file | 
| columns | Columns to read (names or indexes). Default: Read all columns. | 
| x | 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).
mtcars2 <- read_feather(feather_example("mtcars.feather"))
mtcars2Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.