9

我正在使用以下代码绘制一些数据系列和回归线:

ggplot(dt1.melt, aes(x=lower, y=value, group=variable, colour=variable)) +
    geom_point(shape=1) +    
    geom_smooth(method=lm,  
            se=FALSE)   

但是,我需要将回归线限制为通过所有系列的原点 - 与abline(lm(Q75~-1+lower,data=dt1))在标准 R 图上实现的方式相同。

谁能解释如何做到这一点ggplot

4

1 回答 1

20

您需要在formula参数中指定geom_smooth

... + geom_smooth(method=lm, se=FALSE, formula=y~x-1)
于 2012-09-29T08:45:26.047 回答