Announcement

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

  • sort does not work in coefplot

    Dear all,

    The sort command in coefplot (written by Ben Jann) does not work any more on my Stata/MP 15.1 on Windows 10.

    Code:
    sysuse nlsw88, clear
    
    drop if inlist(industry,2)
    
    regress wage ibn.industry, nocons noheader
    
    coefplot, sort


    produces

    Graph.png

    rather than



    as suggested on the coefplot website http://repec.sowi.unibe.ch/stata/coe...ted.html#h-5-3

    Moreover,

    Code:
    sysuse nlsw88, clear
    
    drop if inlist(industry,2)
    
    regress wage ibn.industry, nocons noheader
    
    coefplot, sort(, descending)

    produces an error message

    . coefplot, sort(, descending)
    , invalid name
    r(198);

    Does anybody know what might be wrong here?

    Thanks in advance,
    Leo

  • #2
    A simple
    ssc install coefplot, replace solved it.

    Best wishes,
    Leo

    Comment

    Working...
    X