Hi, I have a preallocated dataframe to which I have to add a list whose vectors will become rows in the dataframe. This is done iteratively. How can I do this? I'm dealing with very large numbers...list of 1000 vectors to a dataframe of 200000 iteratively
for e.g. my list is as follows ll<-list(c("1","2","3"),c("2","3","4")) I have to add this to a dataframe dd<-data.frame(matrix(nrow=10,ncol=3)) so that I get 1 2 3 2 3 4 etc. [[alternative HTML version deleted]] ______________________________________________ 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.