Dear All,
I want to to mark coefficients which p-value is smaller than 0,10 in the Word table with regression results. I used the following command:
I see the error message:
option star() incorrectly specified
Please help me. I don't understand what I'm doing wrong
I want to to mark coefficients which p-value is smaller than 0,10 in the Word table with regression results. I used the following command:
Code:
esttab m1 m2 m3 using example.rtf, ///
cells(b(star(+0.10 *0.05 **0.01 ***0.001) fmt(%9.3f)) se(par)) ///
stats(r2_a N, fmt(%9.3f %9.0fc) labels("R-squared" "Observations")) ///
legend label collabels(none) varlabels(_cons Constant) ///
note(Standard errors are in parentheses. ) ///
title({\b Table 2.} {\i OLS regresssion results}) replace
option star() incorrectly specified
Please help me. I don't understand what I'm doing wrong

Comment