标签: r ggplot2
我正在查看ggplot2的文档,特别是this page,我正在尝试解析这些示例,特别是
ggplot2
cars <- ggplot(mtcars, aes(y=factor(cyl), x=mpg)) cars + stat_bin(aes(fill=..count..), geom="tile", binwidth=3, position="identity")
我不理解符号,fill=..count..。有人可以开导我吗?
fill=..count..