Skip to content

Files

R

Folders and files

NameName
Last commit message
Last commit date
Jul 31, 2020
Aug 23, 2016
Jul 31, 2020
Aug 25, 2016
Jul 31, 2020
Jul 31, 2020
Jul 31, 2020
Jul 31, 2020
Sep 16, 2019
Aug 25, 2016
Jan 7, 2019
Mar 2, 2016

Feather for R

Build Status

Feather is file format designed for efficient on-disk serialisation of data frames that can be shared across programming languages (e.g. Python and R).

library(feather)
write_feather(mtcars, "mtcars.feather")
mtcars2 <- read_feather("mtcars.feather")

Installation

Install the released version from CRAN:

# install.packages("feather")

Or the development version from GitHub:

# install.packages("devtools")
devtools::install_github("wesm/feather/R")