美文网首页
chap 3.9 含权数据

chap 3.9 含权数据

作者: 陆慕熙 | 来源:发表于2021-02-18 11:56 被阅读0次
# 未加权
ggplot(midwest,aes(percwhite,percbelowpoverty))+
  geom_point()
image.png
# 以人口加权
ggplot(midwest,aes(percwhite,percbelowpoverty))+
  geom_point(aes(size=poptotal/1e6))+
  scale_size_area("Population\n(millions)",breaks=c(05,1,2,4))
image.png

增加weight

ggplot(midwest,aes(percwhite,percbelowpoverty))+
  geom_point(aes(size=poptotal/1e6))+
  geom_smooth(aes(weight=poptotal),method = lm,size=1)+
  scale_size_area(guide="none")
image.png

相关文章

网友评论

      本文标题:chap 3.9 含权数据

      本文链接:https://www.haomeiwen.com/subject/poswxltx.html