使用 R 中的 lm() 拟合固定效应模型,无需单独的截距
我正在研究面板回归,并决定切换到 lm()
,因为 plm()
没有良好的 predict()
函数作为计量经济学的新手,测试数据(以及 Python 中的线性模型)和 lme4 语法对我来说并不直观。
我想使用 lm 并预测看不见的数据。
我的 lm() 方程看起来像这样,作者作为固定效果
fit <- lm(y ~ a + b + factor(author), data = train)
显然它打印了数千个单独的系数。如何在 lm() 中构建模型,对所有作者进行评估而不单独打印?
I am working on panel regression and decided to switch to lm()
, because plm()
does not have a good predict()
function for test data (as well as linearmodels
in Python) and lme4
syntax is not intuitive for me as a newbie to econometrics.
I want to use lm
and predict on unseen data.
My lm()
equation looks like this with author as a fixed effect
fit <- lm(y ~ a + b + factor(author), data = train)
Obviously it prints me thousands of individual coefficients. How to construct a model in lm()
, evaluating for all authors without printing individually?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
让我们假设一些具体的数据示例,例如
现在我们进行固定效应回归,我假设我们不需要任何截距,因此命令是
公式中的
- 1
部分将 Intercpet 排除在外,而不是固定效果回归为每个作者
计算效果。没有遗漏任何基础水平。打印此模型或其摘要对于示例中的 10 位作者来说是可行的,但对于您的工作中的数千位作者来说是不可行的。
您可以像这样仅打印
a
和b
的系数您可以通过
anova
命令查看系数及其 p 值您可以甚至解构系数的
summary(fit)
或显示调整后的 R²:有关其他值,请参阅
help(summary.lm)
。如果您还想查看作者F
的系数,即Let's assume some concrete data example, e.g.
Now we do a fixed effect regression, I assume we do not want any Intercept so the command is
The
- 1
part in the formula leaves the Intercpet out, instead a fixed effect is computed for eachauthor
. No base level left out.Printing this model or it's summary is feasible with the 10 authors in the example but not with thousands in your work.
You can print the coefficents of only
a
andb
like thisYou can see the coefficients and their p-values via the
anova
commandAnd you can even deconstruct
summary(fit)
for the coefficents or to display the adjusted R²:For other values see
help(summary.lm)
. Should you still want to see the coefficient of authorF
that is