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)
这一串代码运行后还是无法显示不同颜色的线,这是什么原因?
col=factor()写错了