ggplot2 - R - 如何修复图例中气泡的大小

ggplot2 - R - How to fix size of bubble in legend

我只想把图例中显示气泡颜色的形状变大。我尝试了该站点的一些建议,但到目前为止我一直很不走运。下面是一个基本示例。

在此示例中,我希望 "gear" 大小为 10。这可能太大了,但我想先验证它是否正常工作。

library(ggplot2)
ggplot(mtcars
       ,aes(x=hp, y=disp, size=mpg, fill=factor(gear)))+
geom_point(shape=21)+
theme_bw()+
scale_size_continuous(range=c(2,15))+
guides(shape = guide_legend(override.aes = list(size = 10)))

guides 中将 shape 更改为 fill 将重新缩放图例中该元素的大小:

 guides(fill = guide_legend(override.aes = list(size = 10)))