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.
我nnn.R使用以下行获取了我的函数:
nnn.R
来源(“nnn.R”)*
并且没有收到任何错误,但是当我尝试运行它时,这就是我得到的:
错误:找不到函数“nnn”*
这就是函数内部的所有内容
函数 (x) is.null(x)
nnn.R是一个文件,而不是一个函数。该文件必须包含一个函数,定义为:
nnn <- function(x) { return (is.null(x)) }
注意nnn.R可能包含几个函数定义。例如参见本教程。