gpt4 book ai didi

r - 如何在R中绘制线性回归?

转载 作者:行者123 更新时间:2023-12-03 21:41:11 24 4
gpt4 key购买 nike

我想在R中进行以下线性回归的情况

year<-rep(2008:2010,each=4)
quarter<-rep(1:4,3)
cpi<-c(162.2,164.6,166.5,166.0,166.4,167.0,168.6,169.5,170.0,172.0,173.3,174.0)
plot(cpi,xaxt="n",ylab="CPI",xlab="")
axis(1,labels=paste(year,quarter,sep="C"),at=1:12,las=3)
fit<-lm(cpi~year+quarter)

我想画一条线来显示我处理的数据的线性回归。我尝试过:
abline(fit)
abline(fit$coefficients[[1]],c(fit$coefficients[[2]],fit$coefficients[[3]]))

问题是我的公式的形式为:
y=a+b*year+c*quarter

而不是更简单的东西:
y=a+b*year

那么如何绘制显示线性回归的线呢?

可以用abline画线吗?

最佳答案

您在寻找predict函数吗?

例如:使用lines(predict(fit))将产生:

您也可以使用它来预测与计算出的系数一致的 future 数据。例如。

# plot the existing data with space for the predicted line
plot(c(cpi,rep(NA,12)),xaxt="n",ylab="CPI",xlab="",ylim=c(162,190))

# plot the future predictions as a line using the next 3 year periods
lines(13:24,
predict(
fit,
newdata=data.frame(year=rep(c(2011,2012,2013),each=4),quarter=rep(1:4,3))
)
)

year<-rep(2008:2013,each=4)
axis(1,labels=paste(year,quarter,sep="C"),at=1:24,las=3)

关于r - 如何在R中绘制线性回归?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14451782/

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