提问人:Maximilian 提问时间:10/20/2023 最后编辑:r2evansMaximilian 更新时间:10/21/2023 访问量:35
当我运行固定效果的 plm 函数时出现警告消息
Warning message when I run the plm function for fixed effects
问:
我不明白 RStudio 中发生了什么。运行固定效应估计器的函数后,我收到一条警告,该警告出现在我在 R 中键入的任何内容。警告是plm
In if (n >= 10000L) return(TRUE) : the condition has length > 1 and only the first element will be used
例如,考虑
#rm(list=ls())
library(wooldridge)
library(plm)
data=wagepan
fixed_effects_model=plm(lwage~d81+d82+d83+d84+d85+d86+d87+married+union+ I(d81*educ)+I(d82*educ)+I(d83*educ)+I(d84*educ)+I(d85*educ)+I(d86*educ)+I(d87*educ),index="nr",model="within",data=data)
summary(fixed_effects_model)
从该功能开始,我始终收到上述警告消息。summary
答: 暂无答案
评论
n
if()
n