作者lowgeliu (Lowge)
看板Statistics
标题[程式] SAS industry & year fixed effect
时间Sat May 13 16:45:04 2017
[软体程式类别]:
SAS
[程式问题]:
回归
[软体熟悉度]:
新手
小弟需要在回归中同时固定Industry fixed effect跟year fixed effect
尝试写了以下的回归式:
proc sort data=reg_bhar out=reg_bhar
by year sic_code;
run;;
proc panel data=reg_bhar;
id year sic_code;
model bhar=relative_size cash diversity;
run;
结果却出现了以下的错误警告
Error: the data set work.reg_bhar is not sorted in ascending sequence
with respect to the time series ID. The current time period has Sic_code=3613
and the previous time period has sic_code=3613 insection year=2010;
可是只排序Year的话一样会出现问题
希望能请教该怎麽解决,是我使用错误的模型还是该在如何处理一下母资料,非常感谢!
--
※ 发信站: 批踢踢实业坊(ptt.cc), 来自: 1.162.49.231
※ 文章网址: https://webptt.com/cn.aspx?n=bbs/Statistics/M.1494665106.A.951.html
1F:→ lowgeliu: 如果把proc panel 改成 proc surveyreg 跟CLASS 05/13 17:06
2F:→ lowgeliu: 可以达到控制Year & industry fixed effect 的效果吗 05/13 17:06
3F:推 tew: 1你的样本中出现 某家公司 只出现一个观察值 05/13 18:39
4F:→ tew: 2. 使用proc surveyreg 可以解决 05/13 18:40
5F:→ tew: 3如果是新版的 proc autoreg更好用 05/13 18:40
6F:→ lowgeliu: 好的!非常感谢 05/13 20:40