我应该如何处理“'someFunction' 不是 'namespace:somePackage' 的导出对象”错误?
How should I deal with "'someFunction' is not an exported object from 'namespace:somePackage'" error?
我有这个错误:
'someFunction' is not an exported object from 'namespace:somePackage'
有谁知道怎么解决的吗?
一些原因:
- 函数不再是包的一部分,尝试
??someFunction
找出它属于哪个包。
- 包数据不是包的一部分
- 功能在较新版本的软件包中可用,请重新安装最新版本。
另请参阅这些涉及此问题特定实例的问题:
- Error: 'use_package' is not an exported object from 'namespace:devtools'
- Error: 'st_normalize' is not an exported object from 'namespace:sf' when using 'geom_sf()'
- 'stopwords' is not an exported object from 'namespace:tokenizers'
- Error: 'is_latex_output' is not an exported object from 'namespace:knitr' in Rmarkdown
- R package Error: 'encode_colour' is not an exported object from 'namespace:farver'
- R Markdown Error: 'is_latex_output' is not an exported object from 'namespace:knitr'
我有这个错误:
'someFunction' is not an exported object from 'namespace:somePackage'
有谁知道怎么解决的吗?
一些原因:
- 函数不再是包的一部分,尝试
??someFunction
找出它属于哪个包。 - 包数据不是包的一部分
- 功能在较新版本的软件包中可用,请重新安装最新版本。
另请参阅这些涉及此问题特定实例的问题:
- Error: 'use_package' is not an exported object from 'namespace:devtools'
- Error: 'st_normalize' is not an exported object from 'namespace:sf' when using 'geom_sf()'
- 'stopwords' is not an exported object from 'namespace:tokenizers'
- Error: 'is_latex_output' is not an exported object from 'namespace:knitr' in Rmarkdown
- R package Error: 'encode_colour' is not an exported object from 'namespace:farver'
- R Markdown Error: 'is_latex_output' is not an exported object from 'namespace:knitr'