Mass rbind.fill for many data frames
问题 I am attempting to row bind many data frames together into a single massive data frame. The data frames are named sequentially with the first named df1 , the second named df2 , the third named df3 , etc. Currently, I have bound these data frames together by explicitly typing the names of the data frames; however, for a very large number of data frames (roughly 10,000 total data frames are expected) this is suboptimal. Here is a working example: # Load required packages library(plyr) #