0

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

user3570187
  • 1,743
  • 3
  • 17
  • 34

0 Answers0