问题
I am trying to rbind pages sequentially by combining the data frames using the pages.
library(jsonlite)
pages <- list()
for(i in 1:3){
mydata<- data.frame(c(1,2), c(4,5))
pages[[i+1]] <- mydata$filings
}
filings <- rbind.pages(pages)
When i view the filings dataset I see only 0 variables. I am expecting 6 rows and 2 columns. Can some one address how to tether and attach the data while looping. Thanks
来源:https://stackoverflow.com/questions/30539282/combining-many-data-frames-with-rbind-and-pages