Hello:
I use version 15.0 of Stata. I have made regression tables using estab that include two interactive terms between a continuous and dummy variable. For some reason, the estab table includes coefficients for when the dummy is both zero and one, even though the regular output in the Stata window does not. I would like to suppress or drop all the results for when the dummy is zero. I tried the drop command with no success.
Here are the commands:
logit dependentvar c.moderate_inflation_m_y##i.abe_dummy c.moderate_deflation_m_y##i.abe_dummy
est store m1
esttab m1, order(moderate_deflation_m_y moderate_inflation_m_y abe2 ), using "/Users/Stata/Tables/model1", se nonumber mtitle("Model 1") label varwidth(60) replace
Here is the output for the dummies.
Abe dummy=0 0
(.)
Abe dummy=1 1.874***
(0.359)
Abe dummy=0 # Moderate inflation 0
(.)
Abe dummy=1 # Moderate inflation -0.344
(0.253)
Abe dummy=0 # Moderate deflation 0
(.)
Abe dummy=1 # Moderate deflation -0.209
(0.289)
I'd like to get rid of all of the following from the table: "Abe dummy=0", "Abe dummy=0 # Moderate inflation", "Abe dummy=0 # Moderate inflation". Is there any way to do this?
Thank you,
Gene Park
I use version 15.0 of Stata. I have made regression tables using estab that include two interactive terms between a continuous and dummy variable. For some reason, the estab table includes coefficients for when the dummy is both zero and one, even though the regular output in the Stata window does not. I would like to suppress or drop all the results for when the dummy is zero. I tried the drop command with no success.
Here are the commands:
logit dependentvar c.moderate_inflation_m_y##i.abe_dummy c.moderate_deflation_m_y##i.abe_dummy
est store m1
esttab m1, order(moderate_deflation_m_y moderate_inflation_m_y abe2 ), using "/Users/Stata/Tables/model1", se nonumber mtitle("Model 1") label varwidth(60) replace
Here is the output for the dummies.
Abe dummy=0 0
(.)
Abe dummy=1 1.874***
(0.359)
Abe dummy=0 # Moderate inflation 0
(.)
Abe dummy=1 # Moderate inflation -0.344
(0.253)
Abe dummy=0 # Moderate deflation 0
(.)
Abe dummy=1 # Moderate deflation -0.209
(0.289)
I'd like to get rid of all of the following from the table: "Abe dummy=0", "Abe dummy=0 # Moderate inflation", "Abe dummy=0 # Moderate inflation". Is there any way to do this?
Thank you,
Gene Park
Comment