使用poly()函数在R中进行回归 [英] Regression in R using poly() function

查看:121
本文介绍了使用poly()函数在R中进行回归的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

使用R中的函数poly()来生成正交向量,并且有助于解释系数的重要性.但是,我不认为将其用于预测的意义.我认为,以下两个模型(model_1和model_2)应该产生相同的预测.

The function poly() in R is used in order to produce orthogonal vectors and can be helpful to interpret coefficient significance. However, I don't see the point of using it for prediction. To my view, the two following model (model_1 and model_2) should produce the same predictions.

q=1:11
v=c(3,5,7,9.2,14,20,26,34,50,59,80)
model_1=lm(v~poly(q,2))
model_2=lm(v~1+q+q^2)
predict(model_1)
predict(model_2)

但事实并非如此.为什么?

But it doesn't. Why?

推荐答案

因为它们不是同一模型.您的第二个有一个唯一的协变量,而第一个有两个.

Because they are not the same model. Your second one has one unique covariate, while the first has two.

> model_2

Call:
lm(formula = v ~ 1 + q + q^2)

Coefficients:
(Intercept)            q  
    -15.251        7.196  

您应该使用 I()函数修改公式中的一个参数,以便回归将其视为协变量:

You should use the I() function to modify one parameter inside your formula in order the regression to consider it as a covariate:

model_2=lm(v~1+q+I(q^2))

> model_2

Call:
lm(formula = v ~ 1 + q + I(q^2))

Coefficients:
(Intercept)            q       I(q^2)  
     7.5612      -3.3323       0.8774  

将给出相同的预测

> predict(model_1)
        1         2         3         4         5         6         7         8         9        10        11 
 5.106294  4.406154  5.460793  8.270210 12.834406 19.153380 27.227133 37.055664 48.638974 61.977063 77.069930 
> predict(model_2)
        1         2         3         4         5         6         7         8         9        10        11 
 5.106294  4.406154  5.460793  8.270210 12.834406 19.153380 27.227133 37.055664 48.638974 61.977063 77.069930

这篇关于使用poly()函数在R中进行回归的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆