I am trying to append more than 10 000 files into a data frame in R. The first step in this job was to scrape files from
for(i in 1:10000) {
assign(x = paste("data", i, sep = "_"), value =
readHTMLTable((paste("webaddress_page=", i, sep = '')),which=1))
}
This works just fine, and I have 10 000 files, data_1-data_10000. However, I would like to append these files into a data.frame, but not sure how to proceed? Do I add another "data step", or maybe it is possible to do within the existing code?
Thanks.