搜索
人大经济论坛 附件下载

附件下载

所在主题:
文件名:  206650.pdf
资料下载链接地址: https://bbs.pinggu.org/a-206650.html
附件大小:
159.73 KB   举报本内容
这是我们上时间序列课上的一个协整例子
我对这门课一直不明白,所以想请高手帮我分别解释一下分析结果,就是执行完程序后各个表都是怎麽分析和解释的。
我现在就要考试了,手头上还有一个类似的项目要交,现在还不明白,所以非常着急,希望热心的高手指点一下,感激不荆
data bidon;
infile 'E:\Mes documents\serie temp\exemples\chom.txt' expandtabs;
input idf rc
date = intnx( 'qtr', '30sep1981'd, _n_ );
format date yyqs.;
run;
proc print;run;

symbol i=j;
symbol2 i=j;
proc gplot data=bidon;
plot idf*date rc*date / overlay legend;
run;
quit;

proc varmax data=bidon lagmax=5;
model idf rc / p=2 dify(1);
run;

proc arima data=bidon;
identify var= idf nlag=10 stationnarity=(DICKEY);
estimate p=2;
run;quit;
data bibi;
set bidon;
didf=dif(idf);
run;
proc print;run;
proc arima data=bibi;
identify var= didf nlag=10 stationnarity=(DICKEY);
estimate p=1;
run;quit;
proc arima data=bidon;
identify var= rc nlag=10 stationnarity=(DICKEY);
estimate p=2;
run;quit;
data bibi2;
set bidon;
drc=dif(rc);
run;
proc print;run;
proc arima data=bibi2;
identify var= drc nlag=10 stationnarity=(DICKEY); /*en passant en delta on exclu la constante donc ici on utilise taux et non taux mu*/
estimate p=1 noconstant;
run;quit;
proc varmax data=bidon lagmax=5;
model idf rc / p=2 dify(1);
run;
proc varmax data=bidon lagmax=5;
model idf rc / p=1 dify(1)noint;
run;
proc arima data=bidon;
identify var=idf(1);
estimate p=1 noconstant;
run;quit;
proc arima data=bidon;
identify var=rc(1);
estimate p=1 noconstant;
run;quit;

proc varmax data=bidon;
model idf rc / p=1 dify(1) noint;
causal group1=(idf) group2=(rc);
run;
proc varmax data=bidon;
model idf rc / p=1 dify(1) noint;
causal group1=(rc) group2=(idf);
run;
proc varmax data=bidon;
model idf rc / p=1 dify(1) noint lagmax=16 print=(impulse=(all)) printform=univariate;
run;

还有一个例子是用 proc iml的
proc iml ;
phi={1 0 0 ,0 1 0 ,1 -1 0};
sig={1 0 1 , 0 1 -1,1 -1 3};
callvarmasim( y , phi) sigma= sign=200seed=2002;
cn={'y1' 'y2' 'y3'};
createsimul from y [colname=cn];
append from y;
quit;
data simul;
set simul;
date=intnx('quarter', '01Jan1955'd, _n_-1);
format date yyq4;
proc gplot data =simul;
symbol1 v=nonei=join l=1;
symbol2 v=nonei=join l=2;
symbol3 v=nonei=join l=3;
ploty1*date =1
y2*date= 2
y3*date=3/overlay;
run;
proc varmax;
model y1 y2 y3 /p=1 cointtest =(johansen);
run;

proc varmax;
model y1 y2 y3 /p=2 cointtest =(johansen);
run;
proc varmax;
model y1 y2 y3 /p=1 ecm =(rank=1 normalise= y1) noint; 没有 常数
run;

proc varmax;
model y1 y2 y3 /p=1 ecm =(rank=1 normalise= y1 ectrend) ;*有常数;
run;
proc varmax;
model y1 y2 y3 /p=1 ecm =(rank=1 normalise= y1) ;*常数在外边;
run;






    熟悉论坛请点击新手指南
下载说明
1、论坛支持迅雷和网际快车等p2p多线程软件下载,请在上面选择下载通道单击右健下载即可。
2、论坛会定期自动批量更新下载地址,所以请不要浪费时间盗链论坛资源,盗链地址会很快失效。
3、本站为非盈利性质的学术交流网站,鼓励和保护原创作品,拒绝未经版权人许可的上传行为。本站如接到版权人发出的合格侵权通知,将积极的采取必要措施;同时,本站也将在技术手段和能力范围内,履行版权保护的注意义务。
(如有侵权,欢迎举报)
二维码

扫码加我 拉你入群

请注明:姓名-公司-职位

以便审核进群资格,未注明则拒绝

GMT+8, 2025-12-30 05:39