Re: [R] Dataset in parts - how to join together?

2011-07-11 Thread majesty
Thanks a lot for both suggestions, I used region - rbind(region1, region2..., region12), they were all already data frames. It worked well. -- View this message in context: http://r.789695.n4.nabble.com/Dataset-in-parts-how-to-join-together-tp3658088p3659138.html Sent from the R help mailing

[R] Dataset in parts - how to join together?

2011-07-10 Thread majesty
Hello, I am new to R - could somebody suggest a function to investigate for the following: I have data of the form OA_CODE VALUE xyz 0.42 abd 0.10 but I have it in 12 separate files, each with output areas and value for one of 12 regions. I would like to combine the 12

Re: [R] Dataset in parts - how to join together?

2011-07-10 Thread Joshua Wiley
Hi, If all the datasets have the same columns, you could just use rbind(). You might also look into the merge function. You can look up the documentation by typing (at the console): ?rbind ?merge We can give more detailed help with a more detailed example. Cheers, Josh On Sun, Jul 10, 2011

Re: [R] Dataset in parts - how to join together?

2011-07-10 Thread Hasan Diwan
region1 - read.table(file1, header=T) ... region12 - read.table(file12, header=T) region - data.frame(rbind(region1, region=1)..., rbind(region12, region=12))) rm(region1, region2, region3..., region11, region12) On 10 July 2011 12:22, majesty juta.kawalerow...@stx.ox.ac.uk wrote: Hello, I am