Messy plot when plotting predictions of a polynomial regression using lm() in R

自古美人都是妖i 提交于 2019-11-27 09:52:53
李哲源

You need order():

P <- predict(quadratic.model)
plot(y~x)
reorder <- order(x)
lines(x[reorder], P[reorder])

My answer here is related: Problems displaying LOESS regression line and confidence interval

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!