R 会绘图但不会绘制 abline

发布于 2024-12-02 05:00:08 字数 343 浏览 1 评论 0原文

> head(returnee)
[1]  1.3936536 -0.6730667  2.3584725  2.3477308  3.2841443  1.3168157
> head(vixee)
[1] 14.75 15.45 17.59 17.74 17.75 18.35
> class(returnee)
[1] "numeric"
> class(vixee)
[1] "numeric"
> plot(returnee, vixee)
> abline(lm(returnee ~ vixee))

当我运行它时,它给出了情节,但没有 abline。有什么建议吗?谢谢。

> head(returnee)
[1]  1.3936536 -0.6730667  2.3584725  2.3477308  3.2841443  1.3168157
> head(vixee)
[1] 14.75 15.45 17.59 17.74 17.75 18.35
> class(returnee)
[1] "numeric"
> class(vixee)
[1] "numeric"
> plot(returnee, vixee)
> abline(lm(returnee ~ vixee))

When I run this, it gives the plot, but there is no abline. Any suggestions? Thanks.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

稀香 2024-12-09 05:00:08

它应该是 abline(lm(vixee ~ returnee)) 来匹配绘图的坐标。

It should be abline(lm(vixee ~ returnee)) to match the coordinates of the plot.

没企图 2024-12-09 05:00:08

与@AK相反,我想说你的情节倒退了。一个或另一个......如果回归是你想要的方式(即y~x),那么尝试

plot(vixee ~ returnee)  ## formula interface, y~x

或者

plot(returnee,vixee)    ## standard interface, (x,y)

In contrast to @AK, I was going to say you had your plot backwards. One or the other ... if the regression is the way you want it (i.e. y~x) then try either

plot(vixee ~ returnee)  ## formula interface, y~x

or

plot(returnee,vixee)    ## standard interface, (x,y)
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文