I am trying to recreate this conditional and mixed logit model table -
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
-
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.