gpt4 book ai didi

r - "Error in int_abline...plot.new has not been called yet"

转载 作者:行者123 更新时间:2023-12-04 05:18:26 27 4
gpt4 key购买 nike

我在这里的其他地方看到过这个错误,但我没有得到任何修复。我目前正在使用内置的“忠实”数据集作为 r-tutor.com 教程的一部分:

duration = faithful$eruptions
waiting = faithful$waiting
abline(lm(duration ~ waiting))
Error in int_abline(a = a, b = b, h = h, v = v, untf = untf, ...) :
plot.new has not been called yet

我试过 plot.new() , 没运气。
我试过
x <- (duration ~ waiting)
abline(x)

没运气。

我尝试重新启动 R,没有运气。在 Windows 上使用 3.0.0。
谢谢。

最佳答案

abline必须在现有地块上调用。当没有绘制任何内容时,您无法调用它。

你可能想这样做:

plot(duration ~ waiting, data=faithful)
abline(lm(duration ~ waiting, data=faithful))

关于r - "Error in int_abline...plot.new has not been called yet",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19237844/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com