Error: could not find function ... in R

Posted Data+Science+Insight

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Error: could not find function ... in R相关的知识,希望对你有一定的参考价值。

Error: could not find function ... in R

目录

Error: could not find function ... in R

问题:

解决:

完整错误:


问题:

> mytest.ax(lable,prediction)
Error in mytest.ax(lable, prediction) : 
  could not find function "mytest.ax"

解决:

第一,函数名称写对了吗?R语言函数名称区分大小写。

第二,是否安装了包含该函数的包?install.packages(“package_name”)

第三,

require(package_name)

library(package)

require(package_name)(并检查其返回值)或library(package)(每次启动新的R会话时都应该这样做)

第四,使用的是还不存在此功能的旧R版本吗?或者就版本的R包;或者版本更新后,有的函数被原来包剔除了;

第五,函数随着时间的推移而添加和删除,所引用的代码可能期望的是比您所安装的包更新或更旧的版本。或者太新了CRAN还没有包含最新的版本;

完整错误:

> mytest.ax(lable,prediction)
Error in mytest.ax(lable, prediction) : 
  could not find function "mytest.ax"

参考:R

参考:Error: could not find function ... in R

以上是关于Error: could not find function ... in R的主要内容,如果未能解决你的问题,请参考以下文章

Error: could not find java.dll如何解决

Error: could not find function ... in R

Android Error:Could not find lottie.jar

Maven - Could not find artifact

Error: Could not find or load main class Test

selenium环境搭建:Error: could not find java.dll 报错问题