我也遇到了同样的问题:全国各省的卫生支出exp,和财政收入,转移支付,人口统计学因素和教育水平,地理分组(比如沿海,中部,西部)做面板回归,经过检验我的数据应使用固定效应模型。
tsset pro year
xi: xtreg exp rev tran age65 age15 i.geogrp i.edu, fe
如果要使用上述方程的话整个模型的系数就都改变了。
但如果使用下边这个模型的话系数并不改变,但出现省份哑变量被omitted的情况。
note: _Ipre_32 omitted because of collinearity
note: _Ipre_46 omitted because of collinearity
tsset pro year
xi: reg exp rev tran age65 age15 dgeogrp2 dgeogrp3 dedu2 dedu3 i.pro
应该如何解决呢? 同求