read_rds {readr}R Documentation

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

temp <- tempfile()
write_rds(mtcars, temp)
read_rds(temp)

[Package readr version 1.0.0 Index]