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)
Value
Nothing is returned. This function is used solely to put objects into the 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 ...
## 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')