load_list {EDCimport} | R Documentation |
Load a list in an environment
Description
Load a list in an environment
Usage
load_list(x, env = parent.frame(), remove = TRUE)
Arguments
x |
a list |
env |
the environment onto which the list should be loaded |
remove |
if |
Value
nothing, called for its side-effect
Examples
x=list(a=1, b=mtcars)
load_list(x, remove=FALSE)
print(a)
print(nrow(b))
[Package EDCimport version 0.4.1 Index]