Skip to content
Prev 45621 / 398498 Next

Adding data.frames together

Use rbind() (for row-bind).  Here are some examples:
x y
1  1 1
11 1 1
2  2 2
12 3 3
x y
1  1 1
11 1 1
2  2 2
12 3 3

[or even this:]
paste("d",1:3,sep="",collapse=","), ")")))))
   x y
1  1 1
11 1 1
2  2 2
12 3 3

HTH,
Andy
------------------------------------------------------------------------------
Notice:  This e-mail message, together with any attachments,...{{dropped}}