Re: [R] add data from .RData file

2012-03-07 Thread David Winsemius
On Mar 7, 2012, at 3:39 PM, David Winsemius wrote: On Mar 7, 2012, at 3:16 PM, uday wrote: HI Sarah, thanks for reply your method works what I did load (" data.2005") load ( "data.2006") then data.new<- c( or we can save it as a new .RData also. That looks failure prone. You have remove

Re: [R] add data from .RData file

2012-03-07 Thread David Winsemius
On Mar 7, 2012, at 3:16 PM, uday wrote: HI Sarah, thanks for reply your method works what I did load (" data.2005") load ( "data.2006") then data.new<- c( or we can save it as a new .RData also. That looks failure prone. You have removed the context of your original question ( and PLEASE

Re: [R] add data from .RData file

2012-03-07 Thread uday
HI Sarah, thanks for reply your method works what I did load (" data.2005") load ( "data.2006") then data.new<- c( data.2005, data.2006) or we can save it as a new .RData also. The NULL files I can remove by selecting particular file number e.g data.new<- c( data.2005[1:3], data.2006[4:6]

Re: [R] add data from .RData file

2012-03-07 Thread Sarah Goslee
You can use load() to load them both, if they do not have objects with identical names, then save() to make a new RData file. I'm not clear on what you mean by a NULL file, though. If you know which objects you want to get rid of, you can do that with rm(). Sarah On Wed, Mar 7, 2012 at 12:46 PM,