我有这种数据框:
df<-data.frame(x=c(1,2,3,4,5,6,7,8,9,10),y=c(2,11,24,30,45,65,90,110,126,145), a=c(0.2,0.2,0.3,0.4,0.1,0.8,0.7,0.6,0.8,0.9))
使用 ggplot,我想在同一个图上绘制两条回归线,在条件(a > 或 < 0.5)下为我的数据框的子集计算。
在视觉上,我希望两条回归线:
df_a<-subset(df, df$a<0.5)
ggplot(df_a,aes(x,y))+
geom_point(aes(color = a), size=3.5) +
geom_smooth(method="lm", size=1, color="black") +
ylim(-5,155) +
xlim(0,11)
df_b<-subset(df, df$a>0.5)
ggplot(df_b,aes(x,y)) +
geom_point(aes(color = a), size=3.5) +
geom_smooth(method="lm", size=1, color="black") +
ylim(-5,155) +
xlim(0,11)
出现在这个图上:
ggplot(df,aes(x,y))+ geom_point(aes(color = a), size=3.5)
我试过par(new=TRUE)
没有成功。