问题在标题中。我想做这样的事情:
myfunc<- pexp
plot(function(x) myfunc(x, 0.5))
我想在我的脚本中调用几个作为参数给出的函数。我想使用 foreach 而不是一堆 if-then-else 语句:
假设我这样调用我的脚本:
R --slave -f script.R --args plnorm pnorm
我想做这样的事情:
#only get parameters after --args
args<-commandArgs(trailingOnly=TRUE)
for i in args {
plot(function(x) i(x,param1,param2))
}