Dear all,
I have one inquiry with respect to the regression output from Stata. That is, I would like to report coefficients, standard errros and adjusted R-Square of regressions. Also, for the starlevel, I would like to adjust as *0.1 **0.05 and ***0.01 rather than the default P-value as *0.05, **0.01 and ***0.001. My code is:
quietly reg Y X1 X2.....
estimates store regression1
esttab regression1, se star ar2 b(%7.3f) starlevels (*0.10 **0.05 ***0.01) parentheses
However, stata reports as "unmatched list of significance symbols and levels".
Is there anything wrong with my code?
Many thanks in advance.
Best wishes,
Cong
I have one inquiry with respect to the regression output from Stata. That is, I would like to report coefficients, standard errros and adjusted R-Square of regressions. Also, for the starlevel, I would like to adjust as *0.1 **0.05 and ***0.01 rather than the default P-value as *0.05, **0.01 and ***0.001. My code is:
quietly reg Y X1 X2.....
estimates store regression1
esttab regression1, se star ar2 b(%7.3f) starlevels (*0.10 **0.05 ***0.01) parentheses
However, stata reports as "unmatched list of significance symbols and levels".
Is there anything wrong with my code?
Many thanks in advance.
Best wishes,
Cong
Comment