In R, I currently have 100 dataframes, named df.1
, ...,df.100
. I would like to be able to rbind
them but it is costly to write out:
rbind(df.1, df.2, etc)
So, I have tried:
rbind(eval(as.symbol(paste0("df.",1:84, collapse = ", "))))
However, this returns errors. Does anyone know how I can make the dataframes usable? thanks.