美文网首页
3.13 统计摘要

3.13 统计摘要

作者: 陆慕熙 | 来源:发表于2021-02-21 16:54 被阅读0次

3.13 统计摘要

ggplot(diamonds,aes(color))+geom_bar()
image.png
ggplot(diamonds,aes(color,price))+
  geom_bar(stat = "summary_bin",fun.y=mean)
image.png
ggplot(diamonds,aes(table,depth))+
  geom_bin2d(binwidth=1,na.rm=T)+
  xlim(50,70)+
  ylim(50,70)
image.png
ggplot(diamonds,aes(table,depth,z=price))+
  geom_bin2d(binwidth=1,stat = "summary_2d",fun=mean,na.rm=T)+
  xlim(50,70)+
  ylim(50,70)
image.png

相关文章

网友评论

      本文标题:3.13 统计摘要

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