loadTo: Load to a list of environment Loads an R dataset written with...

Description Usage Arguments Value Examples

Description

Load to a list of environment Loads an R dataset written with the save function into a list or environment

Usage

1
2
3

Arguments

file

the file argument for load, see there for more details

Value

a list or environment with the named contents of file

Examples

1
2
3
4
5
6
7
8
9
fname <- tempfile()
a <- "b"
b <- 5
save(a, b, file=fname)
l <- loadToList(fname)

e <- loadToEnv(fname)

file.remove(fname)

xrobin/xavamess documentation built on June 15, 2021, 3:46 a.m.