作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
以前有人问过这个问题的略有不同的版本,但我还没有看到好的答案。
我使用 ggplot2 的非常好的源代码有一个非常简单的重现:
进入 ggplot2/R/中的任何文件,并添加一行引用 ggplot2/data/diamonds.r 中包含的“diamonds”数据集。
然后尝试构建/检查包,(即: R CMD build .; R CMD check --as-cran ggplot2_3.0.0.9000.tar.gz
)
在我的任意示例中,我添加了 diamonds
到 theme.r 中的第 436 行,并在尝试检查时收到此注释:
* checking R code for possible problems ... NOTE
plot_theme: no visible binding for global variable ‘diamonds’
Undefined global functions or variables:
diamonds
最佳答案
通常,要摆脱那个 Note 你只需要添加一个像这样的引用:
ggplot2::diamonds
关于R CMD 检查 : no visible binding for global variable (when using a data/dataset in the package),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51409793/
我是一名优秀的程序员,十分优秀!