resave: Add some objects to an existing .Rdata - type file.
Description
Take an existing myfile.Rdata data file and add the specified objects to it. This is achieved by opening the data file in a local environment, "dumping" the new objects into that environment, and re-saving everything to the same file name.
Usage
resave(..., list = character(), file)
Arguments
…
Names of objects to save.
list
A list of names of the objects to save. Can be used with or without any named arguments in ...
file
The name of the file to open and add items to.
Value
Nothing is returned. This function is used solely to put objects into the file.
# NOT RUN {## not run to avoid creating detritus# foo<-1:4# bar<-5:8# save(foo,file='foo.Rdata')# resave(bar,file='foo.Rdata')# #check your work# lsdata('foo.Rdata')# }