R : constraining coefficients and error variance over multiple subsample regressions [closed]

家住魔仙堡 提交于 2019-12-12 03:33:36

问题


I'm working with R on a sample of 145 observations. I have created five subsamples each with 29 observations, while the response variable q has been sorted. As a result, subset1 contains the 29 lines of the data frame with the lowest output, subset2 contains the following 29 lines, etc.

I am regressing the variable q on the predictors x1, x2 ans x3. I now need to perform two experiments :

  1. Constraining the error variance to be the same over all subsamples;
  2. Constraining the coefficients on x2 and x3 as well as the error variance to be the same over the 5 OLS regressions.

So far my approach has been to use the package plm which allows to perform panel regressions. However, I don't know to specifically constrain the error variance, or specific coefficients. Besides, I think there must be a way to do this with the more basic tools incorporated in R.

Please don't hesitate to provide alternative methods. Thanks in advance for your help !


回答1:


Looks like this is all you need:

set.seed(0)
dat <- data.frame(q = sort(rnorm(145)), x1 = rnorm(145), x2 = rnorm(145),
                  x3 = rnorm(145), group = gl(5, 29))

fit <- lm(q ~ x1 * group + x2 + x3, data = dat)

#Coefficients:
#(Intercept)           x1       group2       group3       group4       group5  
#  -1.211435     0.049316     0.610405     1.128571     1.631891     2.502886  
#         x2           x3    x1:group2    x1:group3    x1:group4    x1:group5  
#  -0.027927    -0.015151    -0.004244    -0.074085    -0.044885    -0.074637

Here, I have introduced a grouping factor variable group. Model estimation for all five groups are done at the same time. With formula:

q ~ x1 * group + x2 + x3

we have coefficients of x2 and x3 being the same for all groups. While the interaction x1*group suggests that we have different intercept and slope for x1 for different groups.

If you don't want different intercept for each group, you can use formula:

q ~ x1 + x1 : group + x2 + x3


来源:https://stackoverflow.com/questions/39195558/r-constraining-coefficients-and-error-variance-over-multiple-subsample-regress

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