我可以从字符串执行rscript吗?像这样
> execute("d<-0") # function or command?..
> d[1]
[1] 0
谢谢
答案 0 :(得分:4)
你可以
> eval(parse(text = "d<-0"))
> d[1]
[1] 0
但是,一如既往:
fortunes::fortune("answer is parse")
如果答案是parse(),则通常应重新考虑问题。 -Thomas Lumley R-help(2005年2月)