0Hi,
I'm estimating a multinomial logit model with the mlogit command, and my dependent variable has three modalities. I'd like to use the coefplots command from the Stata journal to display coefficients associated with this regression, but I only have one graph while I thought I would have two (one for each modality of my dependent variable).
Here is my code:
Any idea how I can display coefficients for both modalities of my dependent variable?
I'm estimating a multinomial logit model with the mlogit command, and my dependent variable has three modalities. I'd like to use the coefplots command from the Stata journal to display coefficients associated with this regression, but I only have one graph while I thought I would have two (one for each modality of my dependent variable).
Here is my code:
Code:
eststo: mlogit cheating_cat /// age i.educ i.religion df_y i.risk_lover, rrr robust base(0) estimate store reg1, keep(age *educ *religion df_y *risk_lover) coefplot reg1
Comment