Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个这样的字符串
mystring<-"A+B+C"
一个数据,其中 A、B 和 C 作为变量。我如何把它变成像这样的命令
x<-A+B+C
如上所述使用 mystring 。感谢您的任何提示
您可以使用eval和parse
eval
parse
A <- 1 B <- 2 C <- 3 x <- eval(parse(text = "A+B+C")) x ## [1] 6