I'm curious to know if R can use its "eval" function to perform calculations provided by e.g. a string.
This is a common case
> eval("5+5")
However, instead of 10 I get
[1] "5+5"
Any solution? :-)
|
|
|
eval() evaluates an expression, but "5+5" is a string, not an expression. So, use parse() with text= to translate the string to an expression:
|
|||||
|
|
You can use the
|
|||||
|