Announcement

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

  • Logisitic Regression


    I am trying to recreate this conditional and mixed logit model table -
    Click image for larger version

Name:	stata forum 2.png
Views:	1
Size:	72.7 KB
ID:	1750307


    My code for the conditional logit model is:
    * 1. Pooled
    asclogit choice, casevar(post cm lnb ) case(id) alternatives(alt_categoryfixedeffect)

    * 2. units
    asclogit choice if deregulated == 1, casevar(post cm lnb ) case(id) alternatives(alt_categoryfixedeffect)

    * 3. units
    asclogit choice if regulated == 1, casevar(post cm lnb ) case(id) alternatives(alt_categoryfixedeffect)

    but it is yielding results like this
    -
    Click image for larger version

Name:	stata forum 1.jpg
Views:	1
Size:	39.6 KB
ID:	1750308

    I want to suppress the alternative specific indicators so I only get one coefficient like the example I am trying to recreate but not sure how. I have tried the noconstant command which was recommended but this yielded the same table.
Working...
X