标签: r function
我有一个函数,该函数应作为函数的总和,即,我有f(x) <- a * ecdf(x - 1) + b * ecdf(x - 2),其中a和b是一些实数。问题在于,当尝试调用此总和时,R返回以下错误:non-numeric argument to binary operator。那么,如何将函数乘以欧几里得参数或在R中求和呢?例如,如果我对dnorm()做同样的事情,为什么没有任何错误?
f(x) <- a * ecdf(x - 1) + b * ecdf(x - 2)
a
b
non-numeric argument to binary operator
dnorm()
谢谢您的回答!