facet_wrap(~rating)facet_wrap(~rating)facet_wrap(~rating)

ggplot(data=redwine,aes(y=sulphates,x=alcohol,color=quality))+
  geom_point()+
  scale_y_continuous(limits=c(0.3,1.4))+
  scale_color_brewer()

facet_wrap(~rating)

ggplot(data=redwine,aes(y=sulphates,x=alcohol,color=quality))+
  geom_point()+
  scale_y_continuous(limits=c(0.3,1.4))+
  facet_wrap(~rating)+
  scale_color_brewer()

facet_wrap(~rating)

转载于:https://my.oschina.net/Bettyty/blog/769694

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-10-05
  • 2021-11-29
  • 2022-12-23
  • 2022-12-23
  • 2021-08-12
猜你喜欢
  • 2021-08-28
  • 2021-07-15
  • 2021-05-22
  • 2021-12-11
  • 2021-08-18
  • 2021-05-21
相关资源
相似解决方案