Announcement

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

  • Store listcoef (SPost13_ado) of multinominal logit details to export into LaTeX document (as if e.g. with estadd/esttab)

    I recently tried to export my listcoef results in order to get them into a LaTeX document.

    Any ideas how to achieve this:


    Code:
    Code:
     
     sysuse auto, clear   gen price_cat = 1 if price <= 5000   replace price_cat = 2 if inrange(price, 5001, 10000)   replace price_cat = 3 if price > 10000   mlogit price_cat c.length##i.foreign, baseoutcome(2)   listcoef, lt   mat list r(table)
    But I want longer labels for the names in the r(table) matrix and I would wish to only select the rows (every third), that contain the comparision between the groups 1 and 3.

    I am not really sure how to work with the matrices, so I really appreciate every help. Thanks so much in advance.

    This is originally from my comment here: http://www.statalist.org/forums/foru...git-and-mlogit
Working...
X