powered by
.RData
Instead of loading a .RData file in the global environment, extract every object into a list.
load_as_list(filename)
a list
the filename, with the .RData extension.
x = list(a=1, b=mtcars) save_list(x, "test.RData") y = load_as_list("test.RData") print(y$a)
Run the code above in your browser using DataLab