readr (version 1.0.0)

read_rds: Read object from RDS file.

Description

This is a minimal wrapper around readRDS that uses the same naming scheme as all other functions in readr.

Usage

read_rds(path)

Arguments

path
Path of file

Examples

Run this code
temp <- tempfile()
write_rds(mtcars, temp)
read_rds(temp)

Run the code above in your browser using DataLab