Re: [R] remove quotes from the paste output

2010-12-11 Thread Mark Difford
Bob, >> Does anybody know how to eliminate the double quotes so that I can use >> the >> variable name (generated with the paste function) further in the code... ?noquote should do it. ## > "varName" [1] "varName" > noquote("varName") [1] varName Regards, Mark. -- View this message in contex

Re: [R] remove quotes from the paste output

2010-12-11 Thread Joshua Wiley
Hi Bob, You can use the get() function to loopup a variable name. > long.variable.name <- 5 > "long.variable.name" [1] "long.variable.name" > get("long.variable.name") [1] 5 However, I think this is all overkill. Assuming extractModelParameters() came from the MplusAutomation package, and that