|
你可以自行修改 pvar2.ado 中第 464-505 行中的程序:
local g=1
while `g'<=$G { /* row variable - the one that is recepient of respone */
local j=1
while `j'<=$G { /* column variable - the one causing response */
if "`i'"=="i" { /* with errors */
format ${name`j'}_5 ${name`j'} ${name`j'}_95 $irfformat //%6.3f Arlion
twoway line ${name`j'}_5 ${name`j'} ${name`j'}_95 s ///
if varname=="${name`g'}", ///
saving(gr`g'_`j',replace) yline(0, lp(dash)) ///
ylabel(, angle(0) ) /// // #2
legend(off) ///
红色部分增加一条语句即可:
legend(off) xlabel(1(1)`irf') ///
至于广义 IRF,我随后有时间会加进去,多谢你的建议。
|