Hello Stata users,
I am producing output tables after I run mlogit command
My goal is to have the estimated coefficients and standard errors in the same column, and to have parentheses around the standard errors.
I am running this command:
estout dk1_dk2_price_full using mlogitout, replace c(b(fmt(%9.3f)) se(fmt(%9.3f))) ///
s(ll chi2 N) label legend varlabel(_cons Constant) ///
unstack posthead("") prefoot("") postfoot("")
The output table is produced so that there is an extra row below the estimated coefficient where the corresponding standard error is printed. I am not using LaTex. Can someone provide some suggestions for a code?
Thanks in advance,
Elizabeth
I am producing output tables after I run mlogit command
My goal is to have the estimated coefficients and standard errors in the same column, and to have parentheses around the standard errors.
I am running this command:
estout dk1_dk2_price_full using mlogitout, replace c(b(fmt(%9.3f)) se(fmt(%9.3f))) ///
s(ll chi2 N) label legend varlabel(_cons Constant) ///
unstack posthead("") prefoot("") postfoot("")
The output table is produced so that there is an extra row below the estimated coefficient where the corresponding standard error is printed. I am not using LaTex. Can someone provide some suggestions for a code?
Thanks in advance,
Elizabeth
Comment