Re: [R] Binding dataframe with different length in rows and columns

2005-09-27 Thread venomousanimal
Hello , How about cbind or rbind? You could create a new data frame and push yours into it. Greetz Jérôme Lemaître schrieb: >Dear all, > >I'm trying to combine in R the two following datasets. >I'm would be very grateful if someone could help me with this problem. > >Dataset 1: >X Y Z

Re: [R] Binding dataframe with different length in rows and columns

2005-09-27 Thread Nolwenn LeMeur
Hi Jerome, look at the merge() function Nolwenn On Tue, 27 Sep 2005, Jérôme Lemaître wrote: > Dear all, > > I'm trying to combine in R the two following datasets. > I'm would be very grateful if someone could help me with this problem. > > Dataset 1: > X Y Z > 1 27 48 > 2

[R] Binding dataframe with different length in rows and columns

2005-09-27 Thread Jérôme Lemaître
Dear all, I'm trying to combine in R the two following datasets. I'm would be very grateful if someone could help me with this problem. Dataset 1: X Y Z 1 27 48 2 25 50 3 27 40 4 28 56 Where X is a unique number and Y and Z some variables