load_as_list {EDCimport} | R Documentation |
Load a .RData
file as a list
Description
Instead of loading a .RData
file in the global environment, extract every object into a list.
Usage
load_as_list(filename)
Arguments
filename |
the filename, with the |
Value
a list
Examples
x = list(a=1, b=mtcars)
save_list(x, "test.RData")
y = load_as_list("test.RData")
print(y$a)
[Package EDCimport version 0.4.1 Index]