I have some data frame data1, data2, data10. I want to combine all those data frames by rows.
I tried using rbind in a loop but i can't call dataframe correctly in the loop.
tempo<-data.frame()
for(j in 1:10){
tempo<-rbind(tempo,eval(parse(paste0("data",j))))
}
but that doesn't work. R doesn't know the dataframe that i want to call with command eval(parse)
Thank you