我观察到一种奇怪的行为。映射cyl
变量(来自 mtcars 数据)生成了具有 5 个不同级别的图表,alpha
尽管实际上只有三个级别可用?
这是 bug 吗?还是我遗漏了什么?
library(tidyverse)
count(mtcars, cyl)
#> cyl n
#> 1 4 11
#> 2 6 7
#> 3 8 14
ggplot(mtcars, aes(x = wt, y = mpg)) +
geom_point(aes(alpha = cyl), size = 4)
创建于 2024-08-24,使用reprex v2.1.1