load {base} | R Documentation |
This function will reload the datasets written to a file
with the function save
.
load(filename)
filename |
a character string giving the name of the file to load. |
save
.
# save all data
save(list = ls(), file= "all.Rdata")
# restore the saved values
load("all.Rdata")