I have two different models stored into model1 and model2 (saved them using "estimates store model*"), now I want to make Tex output table where coefficients from models will be displayed in one line under same name. The problem is it is different coefficients - 1.dum_treatment#1.cj_march and dummy_treatment. When I use following syntax, I got output in two different lines even under one naming:
Is there any way to fix it?
Code:
esttab model* using "Table3.tex", replace b(3) se(3) label star(* 0.10 ** 0.05 *** 0.01) varlabels(1.dum_treatment#1.cj_march "CJ Visits X Post-Movement" dummy_treatment "CJ Visits X Post-Movement",) keep(1.dum_treatment#1.cj_march dummy_treatment) .
Comment