Hello,
I'm running a series of loops that run:
For many combinations of `dep_var' and `indep_vars', with `lag' ranging from 0 to 3.
The results are being displayed without trouble in the STATA console, but I would like to export them to Excel (or any valid format) so that I can create a big table of results for the relations of variables.
I've tried with `eststo' but the information for the `xtdcce2' is empty.
Is there another way? How should I proceed?
Thanks very much in advance.
I'm running a series of loops that run:
Code:
xtdcce2 `dep_var' , lr(L.`dep_var' `indep_vars' L.`indep_vars') lr_options(ardl) cr(`dep_var' `indep_vars') cr_lags(`lag')
The results are being displayed without trouble in the STATA console, but I would like to export them to Excel (or any valid format) so that I can create a big table of results for the relations of variables.
I've tried with `eststo' but the information for the `xtdcce2' is empty.
Is there another way? How should I proceed?
Thanks very much in advance.
Comment