Dear R users, I wish to utilise processed and saved objects as arguments of a function.
Specifically, I have created objects using *"assign"* & *"paste"* functions with an incremental index i, the names of the objects are: fund1, fund2, fund3,....., fund80,..... (where the numerical value increments according to the index i & class of these objects are dataframes) I wish to collapse these objects row wisely using *"rbind"* function. paste("fund", 1:i, sep = "") results in list of objects as characters... & get(paste("fund", 1:i, sep = "")) outputs fund1... Are there any methods to use these objects as an argument of "rbind" to collapse the dataframes? Your expertise in resolving this issue would be highly appreciated. Steven [[alternative HTML version deleted]] ______________________________________________ R-help@r-project.org mailing list https://stat.ethz.ch/mailman/listinfo/r-help PLEASE do read the posting guide http://www.R-project.org/posting-guide.html and provide commented, minimal, self-contained, reproducible code.