I have the following code in stata to export results to a table in LaTex, however the results I get doesn't succesfully translate into a functioning table in Overleaf. Is there any error in the export code?
esttab matrix(diff) using "${tables}/Descriptives.tex", replace ///
cells("mean(fmt(3)) sd(fmt(3)) count(fmt(3))") ///
collabels("Mean" "SD" "Obs.") ///
alignment(S) ///
booktabs nomtitles nonumber
esttab matrix(diff) using "${tables}/Descriptives.tex", replace ///
cells("mean(fmt(3)) sd(fmt(3)) count(fmt(3))") ///
collabels("Mean" "SD" "Obs.") ///
alignment(S) ///
booktabs nomtitles nonumber
Comment