我正在尝试这样做
library(ggplot2)
foo <- 4
ggplot(mtcars, aes(x = wt, y = ..count.. + foo)) + geom_histogram()
我正在接受
Error in eval(expr, envir, enclos) : object 'foo' not found
奇怪的是,这是有效的
ggplot(mtcars, aes(x = wt + foo)) + geom_histogram()
为什么我可以在aes()中将wt添加到wt,但不能添加到..count ..?