R CMD 检查 ggplot、子集等的注释

发布于 2024-10-02 07:37:03 字数 363 浏览 3 评论 0原文

使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

丶视觉 2024-10-09 07:37:03

这就是为什么这是一个NOTE而不是WARNINGERROR - 目前没有自动方法来检测非标准评估的使用一个函数。

That's the reason that this is a NOTE not a WARNING or ERROR - there's currently no automated way to detect the use of non-standard evaluation in a function.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文