3.13 统计摘要

2021-02-21  本文已影响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
上一篇 下一篇

猜你喜欢

热点阅读