Skip to content
Prev 78099 / 398502 Next

need suggestion about building formual

I'm not certain what you are asking.

	  You can build expressions in R as character strings and then execute 
them.  Example:

expr <- paste("two <-", 1, "+", 1)
eval(parse(text=expr))
two

	  If this does not answer your question, PLEASE do read the posting 
guide, "www.R-project.org/posting-guide.html".  It can help increase the 
chances of a quick and useful reply.

	  spencer graves
Simple wrote: