网站上的第一个问题。我一直在关注普林斯顿大学的plm软件包指南,并已完成所有工作(无错误)。但是,我陷入了估计“随机”效果模型的最后一步。我认为我的数据非常适合随机模型,因此这是一个大问题。我不明白为什么固定规范有效,而随机规范却无效。这是我得到的错误:
Error in solve.default(M[therows, therows], quad[therows]) : Lapack routine dgesv: system is exactly singular: U[2,2] = 0
任何对此的帮助将非常有用!
这是我的代码:
random <- plm(Reserves ~ Corruption +
RuleofLaw +
BankingRisk +
GDPPC + Electricity +
Mobile + ATM + SchoolEnrollment + Savings +
Population + NumberPOS + POSper,
data=paneldata,
index=c("Country", "Year"), model="random")
summary (random)
我所有的变量都是csv中的常规格式。