save_list | R Documentation |
.RData
fileSave a list as .RData
file
save_list(x, filename)
x |
a list |
filename |
the filename, with the |
nothing, called for its side-effect
x=list(a=1, b=mtcars)
save_list(x, "test.RData")
load("test.RData")
file.remove("test.RData")
print(a)
print(nrow(b))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.