I am running a panel logit regression using and outputting the results with esttab. (Though any help you can give for regular logit/probit is also appreciated.)
In the below case, turnover is a categorical variable which takes on three values, 1 for "None", 2 for "Half", and 3 for "Full".
However, when I look at the compiled LaTex output, the leftmost table column contains the variable label (as desired) but then also the following representing variable levels.

I'm trying to change how the levels are displayed, so instead of 1._predict I would have "None". I tried setting the value labels for turnover, but that didn't seem to do anything. Can anyone help?
Thanks.
In the below case, turnover is a categorical variable which takes on three values, 1 for "None", 2 for "Half", and 3 for "Full".
Code:
xtologit turnover independence,vce(cluster country) eststo panel_log: margins,dydx(independence) post esttab panel_log using "${Tables}/panel_log.tex",title(Mean Marginal Effects, Ordered Logit Panel Regression, Random Effects, Clustered Standard Errors \label{panel_log}) label replace compress booktabs wrap varwidth(40) mtitles("Turnover")
I'm trying to change how the levels are displayed, so instead of 1._predict I would have "None". I tried setting the value labels for turnover, but that didn't seem to do anything. Can anyone help?
Thanks.
Comment