我在这里的其他地方看到过这个错误,但我还没有得到任何修复工作。我目前正在使用内置的“忠实”数据集作为 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。谢谢。