Announcement

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

  • Separating estimation results to export hurdle model

    I am running a Cragg hurdle model & storing the estimates to export. I would like to separate the stored tables for the estimation of the selection model and the main model so that I can export them separately. Is there a non-manual way to do this? So in the following example, I would like to drop from estimates all rows from "selection_ll" on.

    Code:
    webuse fitness
    churdle exponential hours age i.smoke distance i.single, select(commute whours age) ll(0) nolog
    estimates store reg
    estimates table reg

  • #2
    Code:
    webuse fitness
    churdle exponential hours age i.smoke distance i.single, select(commute whours age) ll(0) nolog
    estimates store reg
    estimates table reg, drop(selection_ll:)

    Comment


    • #3
      Perfect- many thanks Andrew!

      Comment

      Working...
      X