Dear all,
I'm running into an issue with my esttab command for the LaTeX tex-file.
Here is my code:
My first esttab command gives me the results as I'd like to see them, but when the tex-file is created, it now suddenly adds more numbers behind the dot for the guess-coefficients.

This is how I would like it to look (the Stata output),
but then my second command creates this:

I'm very confused. Does anyone know what I might be doing wrong?
I have been using the exact same command before without this issue.
I'm running into an issue with my esttab command for the LaTeX tex-file.
Here is my code:
Code:
est clear
eststo: quietly ologit support_tuition T1 c.guess1a c.guess1b
estadd local controls "No"
eststo: quietly ologit support_tuition T1 c.guess1a c.guess1b $controls
estadd local controls "Yes"
eststo: quietly ologit support_tuition T1 c.guess1a c.guess1b $controlspol
estadd local controls "Yes"
eststo: quietly logit support_tuition_dum T1 c.guess1a c.guess1b
estadd local controls "No"
eststo: quietly logit support_tuition_dum T1 c.guess1a c.guess1b $controls
estadd local controls "Yes"
eststo: quietly logit support_tuition_dum T1 c.guess1a c.guess1b $controlspol
estadd local controls "Yes"
esttab, b(3) se(3) scalar(N controls) nobaselevels label drop(cut* $controls $controlspol) unstack
esttab using "reg1_guess.tex", replace f nomtitle nobaselevels label drop(cut* $controls $controlspol) unstack noomitted mlab(none) stats(N controls, label("Observations" "Controls")) eqlabels(none) booktabs alignment(D{.}{.}{-1})
This is how I would like it to look (the Stata output),
but then my second command creates this:
I'm very confused. Does anyone know what I might be doing wrong?
I have been using the exact same command before without this issue.

Comment