Possible Duplicate:
R: How to convert string to variable name?
If I do:
'a' = c(1:10)        
a
[1]  1  2  3  4  5  6  7  8  9 10
here I assign a vector to a string (variable) but i need to a do something like:
a = 'c10'
and then
a = c(1:10)
but the last a must to be c10
How can i do it?
 
     
    