Entering edit mode
Mohammad Esad-Djou
▴
520
@mohammad-esad-djou-1159
Last seen 10.2 years ago
Hello,
I would like to convert a String to a COMMAND:
> direkt <- "mas"
> method <- paste(direkt,"(data.raw)",sep="")
> method
[1] "mas(data.raw)"
here I want to convert stringer to instruction:
data.exprs <- method
but "method" is a string:
> data.exprs <- method
> data.exprs
[1] "mas(data.raw)"
>
How can I solve this problem correctly?
Thanks,
Mohammad Esad-Djou