[R] appending objects to a file created by save()

2006-03-10 Thread Rajarshi Guha
Hi, I've been slowly transitioning to saving sets of objects for a project using save() rather than cluttering my workspace and then doing save.image() However, sometimes after I have done say: save(x,y,z, file='work.Rda') and I reload it a little later and I see that I also want to save

Re: [R] appending objects to a file created by save()

2006-03-10 Thread Prof Brian Ripley
On Fri, 10 Mar 2006, Rajarshi Guha wrote: Hi, I've been slowly transitioning to saving sets of objects for a project using save() rather than cluttering my workspace and then doing save.image() However, sometimes after I have done say: save(x,y,z, file='work.Rda') and I reload it a

Re: [R] appending objects to a file created by save()

2006-03-10 Thread David Whiting
On Fri, 2006-03-10 at 03:46 -0500, Rajarshi Guha wrote: Hi, I've been slowly transitioning to saving sets of objects for a project using save() rather than cluttering my workspace and then doing save.image() However, sometimes after I have done say: save(x,y,z, file='work.Rda') and

Re: [R] appending objects to a file created by save()

2006-03-10 Thread Adaikalavan Ramasamy
Another flexible approach is to zip/tar all the required individual .rda files together. There are two advantages that I see : 1) You can extract a single file from the collection if you want. 2) You can easily list what objects are in the zipped/tarred file. In R you have to load all object