Rantony
2012-Aug-28 06:48 UTC
[R] Create and Assign value into a variable from Another variable
Hi, Here i have a variable named "MyVariable" containing particular name For eg:- MyVariable <- "UnitNo" Here my requirement is, i need to get "UnitNo" as another variable by reading "MyVariable" i need "UnitNo" as variable name and need to assign some value into that. i had tried with as.name(MyVariable ) and as.character(MyVariable) - Its getting that value, but im unable to assign something into that variable. Could you please help me ? - Thank you Antony -- View this message in context: http://r.789695.n4.nabble.com/Create-and-Assign-value-into-a-variable-from-Another-variable-tp4641515.html Sent from the R help mailing list archive at Nabble.com.
Bert Gunter
2012-Aug-28 08:16 UTC
[R] Create and Assign value into a variable from Another variable
Post a small reproducible example to clarify what you want to do. -- Bert On Mon, Aug 27, 2012 at 11:48 PM, Rantony <antony.akkara at ge.com> wrote:> Hi, > > Here i have a variable named "MyVariable" containing particular name > > For eg:- > MyVariable <- "UnitNo" > > Here my requirement is, i need to get "UnitNo" as another variable by > reading "MyVariable" > > i need "UnitNo" as variable name and need to assign some value into that. > > i had tried with as.name(MyVariable ) and as.character(MyVariable) - Its > getting that value, but im unable to assign > something into that variable. > > Could you please help me ? > > - Thank you > Antony > > > > -- > View this message in context: http://r.789695.n4.nabble.com/Create-and-Assign-value-into-a-variable-from-Another-variable-tp4641515.html > Sent from the R help mailing list archive at Nabble.com. > > ______________________________________________ > R-help at 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.-- Bert Gunter Genentech Nonclinical Biostatistics Internal Contact Info: Phone: 467-7374 Website: http://pharmadevelopment.roche.com/index/pdb/pdb-functional-groups/pdb-biostatistics/pdb-ncb-home.htm
Jessica Streicher
2012-Aug-28 09:28 UTC
[R] Create and Assign value into a variable from Another variable
This?> x<-"y" > assign(x,1) > y[1] 1 On 28.08.2012, at 10:16, Bert Gunter wrote:> Post a small reproducible example to clarify what you want to do. > > -- Bert > > On Mon, Aug 27, 2012 at 11:48 PM, Rantony <antony.akkara at ge.com> wrote: >> Hi, >> >> Here i have a variable named "MyVariable" containing particular name >> >> For eg:- >> MyVariable <- "UnitNo" >> >> Here my requirement is, i need to get "UnitNo" as another variable by >> reading "MyVariable" >> >> i need "UnitNo" as variable name and need to assign some value into that. >> >> i had tried with as.name(MyVariable ) and as.character(MyVariable) - Its >> getting that value, but im unable to assign >> something into that variable. >> >> Could you please help me ? >> >> - Thank you >> Antony >> >> >> >> -- >> View this message in context: http://r.789695.n4.nabble.com/Create-and-Assign-value-into-a-variable-from-Another-variable-tp4641515.html >> Sent from the R help mailing list archive at Nabble.com. >> >> ______________________________________________ >> R-help at 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. > > > > -- > > Bert Gunter > Genentech Nonclinical Biostatistics > > Internal Contact Info: > Phone: 467-7374 > Website: > http://pharmadevelopment.roche.com/index/pdb/pdb-functional-groups/pdb-biostatistics/pdb-ncb-home.htm > > ______________________________________________ > R-help at 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.
Rui Barradas
2012-Aug-28 10:17 UTC
[R] Create and Assign value into a variable from Another variable
Hello, Try the following, supposing that 1:5 is the value you want to assign. ?assign MyVariable <- "UnitNo" assign(MyVariable, 1:5) UnitNo Hope this helps, Rui Barradas Em 28-08-2012 07:48, Rantony escreveu:> Hi, > > Here i have a variable named "MyVariable" containing particular name > > For eg:- > MyVariable <- "UnitNo" > > Here my requirement is, i need to get "UnitNo" as another variable by > reading "MyVariable" > > i need "UnitNo" as variable name and need to assign some value into that. > > i had tried with as.name(MyVariable ) and as.character(MyVariable) - Its > getting that value, but im unable to assign > something into that variable. > > Could you please help me ? > > - Thank you > Antony > > > > -- > View this message in context: http://r.789695.n4.nabble.com/Create-and-Assign-value-into-a-variable-from-Another-variable-tp4641515.html > Sent from the R help mailing list archive at Nabble.com. > > ______________________________________________ > R-help at 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.
Akkara, Antony (GE Energy, Non-GE)
2012-Aug-28 10:34 UTC
[R] Create and Assign value into a variable from Another variable
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 solution] Now, " MyDataFrame " is a variable and containing some values in that. And Now, the problem what is I need to do "rbind" into the variable " MyDataFrame ". I tried to do, rbind(as.character(Variable_1), data.frame(read.csv("c:\\My2ndData.csv"))) Here I am getting stuck ! - Thanks Antony -----Original Message----- From: Rui Barradas [mailto:ruipbarradas at sapo.pt] Sent: Tuesday, August 28, 2012 3:48 PM To: Akkara, Antony (GE Energy, Non-GE) Cc: r-help Subject: Re: [R] Create and Assign value into a variable from Another variable Hello, Try the following, supposing that 1:5 is the value you want to assign. ?assign MyVariable <- "UnitNo" assign(MyVariable, 1:5) UnitNo Hope this helps, Rui Barradas Em 28-08-2012 07:48, Rantony escreveu:> Hi, > > Here i have a variable named "MyVariable" containing particular name > > For eg:- > MyVariable <- "UnitNo" > > Here my requirement is, i need to get "UnitNo" as another variable by > reading "MyVariable" > > i need "UnitNo" as variable name and need to assign some value intothat.> > i had tried with as.name(MyVariable ) and as.character(MyVariable) - > Its getting that value, but im unable to assign something into that > variable. > > Could you please help me ? > > - Thank you > Antony > > > > -- > View this message in context: > http://r.789695.n4.nabble.com/Create-and-Assign-value-into-a-variable- > from-Another-variable-tp4641515.html > Sent from the R help mailing list archive at Nabble.com. > > ______________________________________________ > R-help at 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.
Greg Snow
2012-Aug-28 16:25 UTC
[R] Create and Assign value into a variable from Another variable
Others have mentioned assign and get, but generally when the answer to a question is "assign" it means that you are asking the wrong question (see fortune(236)). This is actually FAQ 7.21, the most useful part of the answer in the FAQ is the last few lines. If you tell us more about what you are actually trying to accomplish then we have a better chance of giving you useful advice that is less likely to lead to future frustration. On Tue, Aug 28, 2012 at 12:48 AM, Rantony <antony.akkara at ge.com> wrote:> Hi, > > Here i have a variable named "MyVariable" containing particular name > > For eg:- > MyVariable <- "UnitNo" > > Here my requirement is, i need to get "UnitNo" as another variable by > reading "MyVariable" > > i need "UnitNo" as variable name and need to assign some value into that. > > i had tried with as.name(MyVariable ) and as.character(MyVariable) - Its > getting that value, but im unable to assign > something into that variable. > > Could you please help me ? > > - Thank you > Antony > > > > -- > View this message in context: http://r.789695.n4.nabble.com/Create-and-Assign-value-into-a-variable-from-Another-variable-tp4641515.html > Sent from the R help mailing list archive at Nabble.com. > > ______________________________________________ > R-help at 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.-- Gregory (Greg) L. Snow Ph.D. 538280 at gmail.com