Dear all, I am struggling with the following issue (that I really do not understand).
I have saved (at least this is what I think to have done) 3 matrices, whose I would like to export some coefficient in a table.
I did it with the following command
and it seems to have worked properly, since when asking for:
Stata shows me the correct values (that I would like to export). Then, having tried with different methods (looking a bit around on the web), I always end up with a table with all 0s; is like in some way I discard the saved matrices, but I reallky don't know in which step.
Do you have any suggestion on how to deal with this?
Thanks a lot, GP
I have saved (at least this is what I think to have done) 3 matrices, whose I would like to export some coefficient in a table.
I did it with the following command
Code:
matrix b_restricted = e(b1base) matrix b_unrestricted = e(bfull) matrix b_decomposition = e(b)
Code:
matrix list e(b) matrix list e(bfull) matrix list e(b1base)
Do you have any suggestion on how to deal with this?
Thanks a lot, GP
Comment