Dear friends, I want to save the results after estimation of VAR.
My code (refer to stata official document) is as below,
How could I save the table in a form of dta/csv/xls?
And, how can I compute bootstrapping CI ? Is there a big difference between bootstrapping CI and default set CI in stata? Thank you!!
My code (refer to stata official document) is as below,
Code:
use http://www.stata-press.com/data/r15/lutkepohl2 var dln_inv dln_inc dln_consump if qtr<=tq(1978q4), lags(1/2) dfk irf create irf, step(10) set(myirf1) irf graph oirf, impulse(dln_inc) response(dln_consump) irf table oirf, irf(irf) impulse(dln_inc) response(dln_consump)
And, how can I compute bootstrapping CI ? Is there a big difference between bootstrapping CI and default set CI in stata? Thank you!!
Comment