[R] Adding two data.frames.

2010-09-29 Thread Joel
Hi I have two data frames that contains the same sort of data and I want do add them together to get one big data frame, anyone know how to do that? ex: data.frame1 A B C 1 2 3 4 5 6 7 8 9 and data.frame2 A B C 9 8 7 6 5 4 3 2 1 Would then become one big set: data.frame3 A B C 1 2 3 4 5 6 7

Re: [R] Adding two data.frames.

2010-09-29 Thread Ivan Calandra
Hi, Take a look at rbind() HTH, Ivan Le 9/29/2010 13:24, Joel a écrit : Hi I have two data frames that contains the same sort of data and I want do add them together to get one big data frame, anyone know how to do that? ex: data.frame1 A B C 1 2 3 4 5 6 7 8 9 and data.frame2 A

Re: [R] Adding two data.frames.

2010-09-29 Thread Joel
Thx for the help works very well for me. -- View this message in context: http://r.789695.n4.nabble.com/Adding-two-data-frames-tp2718771p2718901.html Sent from the R help mailing list archive at Nabble.com. __ R-help@r-project.org mailing list