Re: [R] FW: Create and Assign value into a variable from Another variable

2012-08-28 Thread Maarten Kruijver
You probably want to use get(), which is the converse of assign(): rbind(get(Variable_1), data.frame(read.csv("c:\\My2ndData.csv"))) On Tue, Aug 28, 2012 at 11:16 AM, Akkara, Antony (GE Energy, Non-GE) < antony.akk...@ge.com> wrote: > > Ok. > Here I have a variable called "Variable_1". > > Vari

[R] FW: Create and Assign value into a variable from Another variable

2012-08-28 Thread Akkara, Antony (GE Energy, Non-GE)
Ok. Here I have a variable called "Variable_1". Variable_1 <- "MyDataFrame" Here I want to create another variable, by assigning the value of "Variable_1" . So, it will come like, Assign(Variable_1,data.frame(read.csv("c:\\Mydata.csv"))) --->[this was the 1st requirement, now I got the sol