Learn R Programming

feather (version 0.3.5)

read_feather: Read and write feather files.

Description

Read and write feather files.

Usage

read_feather(path, columns = NULL)

write_feather(x, path)

Value

Both functions return a tibble/data frame. write_feather

invisibly returns x (so you can use this function in a pipeline).

Arguments

path

Path to feather file

columns

Columns to read (names or indexes). Default: Read all columns.

x

A data frame to write to disk

Examples

Run this code
mtcars2 <- read_feather(feather_example("mtcars.feather"))
mtcars2

Run the code above in your browser using DataLab