R CMD 检查 ggplot、子集等的注释
使用 ggplot 或子集时,我的包上的 R CMD check
命令会生成以下注释:
* checking R code for possible problems ... NOTE
foo: no visible binding for global variable ‘bar’
对于模拟函数,例如
foo <- function(dataframe) { subset(dataframe,bar>10) }
当忘记包中全局变量的使用。因此我想把它清理干净。
有没有可能让R知道ggplot/subset的特殊性?
When using ggplot or subset, a R CMD check
command on my package generates the following notes:
* checking R code for possible problems ... NOTE
foo: no visible binding for global variable ‘bar’
for a mock function such as
foo <- function(dataframe) { subset(dataframe,bar>10) }
That R CMD check
section is useful when forgetting about the usage of global variables in a package. Therfore I'd like to have it clean.
Is there a possibility to let R know of the special nature of ggplot/subset?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这就是为什么这是一个
NOTE
而不是WARNING
或ERROR
- 目前没有自动方法来检测非标准评估的使用一个函数。That's the reason that this is a
NOTE
not aWARNING
orERROR
- there's currently no automated way to detect the use of non-standard evaluation in a function.