Announcement

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

  • xml_tab error with heckman model in Stata 15

    Hi, xml_tab with heckman model produces error in Stata 15. It works with Stata 14. Is there any way I can make it work in Stata 15? Thanks in advance.

    sysuse auto, clear
    replace price=. if price>10000
    heckman price mpg turn length, select(trunk)
    est sto heck1
    heckman price mpg turn length headroom, select(trunk)
    est sto heck2
    xml_tab heck1 heck2, save(Result.xls)

    Error message:
    equation / not found
    r(303);

  • #2
    Ray Charles
    I’m going to guess that xml_tab is a user contributed command. If so, you should include that information more explicitly.

    That said, there were changes to the way some internal commands in Stata return results. My guess is that this might be a case where there is a difference in the way the results are being returned and the program has not been updated to handle those changes.

    Comment

    Working...
    X