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 8 9
9 8 7
6 5 4
3 2 1


Thx for your help

//Joel
-- 
View this message in context: 
http://r.789695.n4.nabble.com/Adding-two-data-frames-tp2718771p2718771.html
Sent from the R help mailing list archive at Nabble.com.

______________________________________________
R-help@r-project.org mailing list
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
and provide commented, minimal, self-contained, reproducible code.

Reply via email to