问答详情
源自:3-9 ggplot2绘图系统之ggplot

用group整体拟合后无法再显示颜色

ggplot(airquality,aes(Wind,Temp,

                      col_factor(Month)))+

  geom_point()+

  stat_smooth(method="lm",se=FALSE,aes(group=1))+

  stat_smooth(method="lm",se=FALSE)

这一串代码运行后还是无法显示不同颜色的线,这是什么原因?

提问者:weixin_慕慕0514000 2020-01-15 08:37

个回答

  • weixin_慕慕0514000
    2020-01-15 08:40:45

    col=factor()写错了