Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

See below:

 paste("perf.a", "1", sep="")
    [1] "perf.a1"

What if I want to assign a value to perf.a1?

I tried as.name, as.symbol, etc, with no avail:

as.name(paste("perf.a", "1", sep="")) = 5
Error in as.name(paste("perf.a", "1", sep = "")) = 5 : 
  target of assignment expands to non-language object
as.symbol(paste("perf.a", "1", sep="")) = 5
Error in as.symbol(paste("perf.a", "1", sep = "")) = 5 : 
  target of assignment expands to non-language object
noquote(paste("perf.a", "1", sep="")) = 5
Error in noquote(paste("perf.a", "1", sep = "")) = 5 : 
  target of assignment expands to non-language object
share|improve this question
1  
Duplicate? stackoverflow.com/questions/2679193/… – Marek Apr 1 '11 at 11:10
1  
Don't do that. R is not a Macro Language. It's a proper programming language. Try asking this on a C programming forum and feel the hate. – Spacedman Apr 1 '11 at 11:58

3 Answers

up vote 10 down vote accepted

You can use assign (doc) to change the value of perf.a1:

> assign(paste("perf.a", "1", sep=""),5)
> perf.a1
[1] 5
share|improve this answer

This is FAQ 7.21 How can I turn a string into a variable?.

share|improve this answer

See ?assign.

> assign(paste("tra.", 1, sep = ""), 5)
> tra.1
  [1] 5
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.