我想在我的 ggplot 中添加趋势线,但仅限于重要的关系。现在geom_smooth
或stat_smooth
为每个组添加趋势线,但我想指定哪些组获得趋势线,哪些没有。
下面是我的脚本示例:
plot20<-ggplot(data, aes(x=data$Density, y=data$Total.degrees, color=Species, shape=Species))
+ geom_point(size=3)
+ scale_shape_manual(values=shapeset)
+ scale_colour_manual(values=colorset)
+ theme(legend.position="none")
+ geom_smooth(method=lm, se=FALSE)