Hi. I am using "outreg2" to report my estimation results to excel (or csv).
I estimate different models and would like to report only the results of the main independent variable of interest.
For example, I estimate the multiple models (OLS and Probit) with single main variable of interest (x1)
and multiple dependent variable of interest (y1, y2)
Model 1 : reg y1 x1 x2 x3
Model 2 :probit y1 x1 x2 x3
Model 3:reg y2 x1 x2 x3
Model 4: probit y2 x1 x2 x3
The table that I want looks like
Is there any way to do this?
I am happy to know how to do this by using "estout" but I prefer to use outreg2.
Thank you very much for your kind assistance.
I estimate different models and would like to report only the results of the main independent variable of interest.
For example, I estimate the multiple models (OLS and Probit) with single main variable of interest (x1)
and multiple dependent variable of interest (y1, y2)
Model 1 : reg y1 x1 x2 x3
Model 2 :probit y1 x1 x2 x3
Model 3:reg y2 x1 x2 x3
Model 4: probit y2 x1 x2 x3
The table that I want looks like
OLS | Probit | |
y1 | coefficient of x1 | coefficient of x1 |
s.e. of x1 | s.e. of x1 | |
y2 | coefficient of x1 | coefficient of x1 |
s.e. of x1 | s.e. of x1 |
Is there any way to do this?
I am happy to know how to do this by using "estout" but I prefer to use outreg2.
Thank you very much for your kind assistance.
Comment