我正在根据一个图表中的不同数据集绘制多条回归线。我想要一个传奇来展示每条回归线的内容,但我根本无法得到传说。有没有办法在没有向图表添加点的情况下执行此操作?我尝试过使用'fullrange = TRUE',但它无效。
ggplot() +
#regression line 1
# geom_point(data=young,stat='identity', position='identity', aes(x=day,y=in.temp)) + scale_colour_gradient(low='yellow', high='#de2d26') +
geom_smooth(data=young, aes(x=day,y=in.temp,colour='Young'), method='lm',fullrange=TRUE,size=2,color='#f08080',fill='#f08080',show.legend=TRUE) +
#regression line 2
# geom_point(data=old,aes(x=day, y=in.temp)) + scale_colour_gradient(low='yellow', high='#de2d26') +
geom_smooth(data=old, aes(x=day, y=in.temp, colour='Old'), method='lm',fullrange=TRUE,size=2,color='#87ceeb',fill='#87ceeb',show.legend=TRUE) +
scale_y_continuous(limits=c(0,38)) +scale_x_continuous(breaks=1:25)
感谢。