Skip to content
Prev 60172 / 398502 Next

Combined variable names

See  the R-FAQ here:

http://cran.r-project.org/doc/FAQ/R-FAQ.html

Number 7.21.

However, as the FAQ also points out, you might be better served using 
lists.

a <- list()
for (i in 1:100) {
   a[[i]] <- some stuff
}

Sean
On Nov 30, 2004, at 5:42 PM, Tobias Muhlhofer wrote: