I have many variables that I have created using code like this:
for (i in 1:10) {
assign(paste0("variable", i), i )}
I now need to use rbind on the variables to combine them. I tried something like this to no avail:
rbind(assign(paste0("variable", 1:10)))
Any suggestions on what to do?