Re: [R] [Resolved] combine the data frames into comma separated list.

2011-06-14 Thread Gabor Grothendieck
On Tue, Jun 14, 2011 at 11:40 AM, Mary Kindall wrote: > Hi > Thanks Gabor for your suggestion. I am posting the code that worked for me. > > > dataframe1 = data.frame(cbind(Src = c(1,1,1,2,3), Target1 = > c('aaa','bbb','ccc','aaa','ddd')));  #must be data frame > dataframe2 = data.frame(cbind(Src

[R] [Resolved] combine the data frames into comma separated list.

2011-06-14 Thread Mary Kindall
Hi Thanks Gabor for your suggestion. I am posting the code that worked for me. dataframe1 = data.frame(cbind(Src = c(1,1,1,2,3), Target1 = c('aaa','bbb','ccc','aaa','ddd'))); #must be data frame dataframe2 = data.frame(cbind(Src = c(2,3,4,4,4), Target2 = c('','','','','')));