[R] merging 3 data sets at once

2008-06-04 Thread kayj
Hi All, I am looking into merging 3 data sets I know how to do that by merging data1 with data2 and then merging the result with data 3. I was wondering if it can be done all at once so I tried, M-merge(data1,data2,data3, by=”ID”) It does not work! Any ideas? -- View this message in

Re: [R] merging 3 data sets at once

2008-06-04 Thread William Pepe
-0700 From: [EMAIL PROTECTED] To: r-help@r-project.org Subject: [R] merging 3 data sets at once Hi All, I am looking into merging 3 data sets I know how to do that by merging data1 with data2 and then merging the result with data 3. I was wondering if it can be done all at once so I tried, M

Re: [R] merging 3 data sets at once

2008-06-04 Thread William Pepe
: Wed, 4 Jun 2008 16:24:04 -0700 From: [EMAIL PROTECTED] To: r-help@r-project.org Subject: [R] merging 3 data sets at once Hi All, I am looking into merging 3 data sets I know how to do that by merging data1 with data2 and then merging the result with data 3. I was wondering if it can be done

Re: [R] merging 3 data sets at once

2008-06-04 Thread Ben Bolker
Not following this very carefully, but today I did something similar with Reduce(merge,list(d1,d2,d3)) ... __ R-help@r-project.org mailing list https://stat.ethz.ch/mailman/listinfo/r-help PLEASE do read the posting guide