load_as_list | R Documentation |
.RData
file as a listInstead of loading a .RData
file in the global environment, extract every object into a list.
load_as_list(filename)
filename |
the filename, with the |
a list
x = list(a=1, b=mtcars)
save_list(x, "test.RData")
y = load_as_list("test.RData")
print(y$a)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.