Skip to content
Prev 262595 / 398502 Next

use variable value to create new variable name

Tena koe Maciek

It is possible; e.g.:

i <- 3
assign(paste('myVar', i, sep=''), 1:5)
myVar3
[1] 1 2 3 4 5

Personally, I find it is more convenient to use a list so that instead of myVar1, myVar2 etc I have a list object, myVar, with each element equivalent to myVar1, myVar2 etc.

HTH ...

Peter Alspach
The contents of this e-mail are confidential and may be subject to legal privilege.
 If you are not the intended recipient you must not use, disseminate, distribute or
 reproduce all or any part of this e-mail or attachments.  If you have received this
 e-mail in error, please notify the sender and delete all material pertaining to this
 e-mail.  Any opinion or views expressed in this e-mail are those of the individual
 sender and may not represent those of The New Zealand Institute for Plant and
 Food Research Limited.