load_list | R Documentation |
Load a list in an environment
load_list(x, env = parent.frame(), remove = TRUE)
x |
a list |
env |
the environment onto which the list should be loaded |
remove |
if |
nothing, called for its side-effect
x=list(a=1, b=mtcars)
load_list(x, remove=FALSE)
print(a)
print(nrow(b))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.