如何在R包中使用/记录ggplot2特殊变量..count ..

时间:2018-03-24 06:53:01

标签: r ggplot2 roxygen2

我正在使用ggplot2创建用于报告数据的包。我使用变量..count..但是R CMD Check注意到这个变量的存在:

report <- function(df, a){
  ggplot2::ggplot(df, 
                  ggplot2::aes(x = a)) +
    ggplot2::geom_histogram(
      ggplot2::aes(fill = ..count..))
}
df2 <- data.frame(b = rnorm(100,10,1))
report(df2, df2$b)

enter image description here

由于

0 个答案:

没有答案