load2 {BBmisc} | R Documentation |
Load RData file and return objects in it.
Description
Load RData file and return objects in it.
Usage
load2(file, parts, simplify = TRUE, envir, impute)
Arguments
file |
[ |
parts |
[ |
simplify |
[ |
envir |
[ |
impute |
[ |
Value
Either a single object or a list.
Examples
fn = tempfile()
save2(file = fn, a = 1, b = 2, c = 3)
load2(fn, parts = "a")
load2(fn, parts = c("a", "c"))
[Package BBmisc version 1.13 Index]