Announcement

Collapse
No announcement yet.
X
  • Filter
  • Time
  • Show
Clear All
new posts

  • Coefplots after mlogit

    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:
    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
    Any idea how I can display coefficients for both modalities of my dependent variable?

  • #2
    Code:
    webuse sysdsn1 , clear
    
    tab insure
    
    mlogit insure age male nonwhite i.site
    coefplot
    
    coefplot ., keep(Prepaid:)  bylabel(Prepaid)  || ///
             ., keep(Uninsure:) bylabel(Uninsure) ||, drop(_cons)

    Comment

    Working...
    X