(a) merge multiple .RData files into a single .RData file, or
(b) merge the objects contained within those files into a combined object
The former is easier, so I'll explain that via an example:
rm(list=ls()) # clear workspace
load("file1.RData") # load 1st file
load("file2.RData") # load 2nd file
save.image(file="file3.RData") # save all stuff into file3.RData
karl
On Jan 26, 2012, at 2:41 AM, Jeevan Karloss wrote:
> Hello All,
>
> It would be great if someone can help me to merge the Rdata files into a single one to analyse as a single file.
>
> Jeevan
>
> --
> You received this message because you are subscribed to the Google Groups "R/qtl discussion" group.
> To post to this group, send email to rqtl...@googlegroups.com.
> To unsubscribe from this group, send email to rqtl-disc+...@googlegroups.com.
> For more options, visit this group at http://groups.google.com/group/rqtl-disc?hl=en.