Displaying 1 result from an estimated 1 matches for "bigframe2".
Did you mean:
bigframes
2000 Mar 09
1
For the record: how to merge data frames vertically
Hello,
to save searching time in the S-news archive, here is the simple solution to
merge data frames vertically (cols must be equivalent, of course). The
frames must be components of a list, such as produced by
framelist<-split(bigframe,factor).
bigframe2<-do.call("rbind",framelist)
# posted to S-news by Bill Venables, found in summary message
http://lib.stat.cmu.edu/s-news/Burst/13564
The result is identical to bigframe with the exception of the rownames.
Those seem to be generated by pasting the respective component name and each
ro...