My "R" problem.. I want to join two lists but am so for not having any luck. Can anyone assist ?
Variable: myData[1] "Data.Id" "Data.Length" "Data.Weight" "1" 12 12 "2" 45 23 Variable: myData[2] "Data.Id" "Data.Length" "Data.Weight" "3" 25 56 "4" 55 288 How do I join them together to get this ? ; Variable: NewData[1] "Data.Id" "Data.Length" "Data.Weight" "1" 12 12 "2" 45 23 "3" 25 56 "4" 55 288 I have tried rbind,cbind,append, merge no luck so far... Any help greatly appreciated... Thanks Steve -- View this message in context: http://n4.nabble.com/joining-two-lists-tp991285p991285.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.