Announcement

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

  • How to store IRR and CIs from Poisson

    Dear all,

    I use the poisson command to calculate the incidence rate ratio and would like to store the results in a dataset as I already did with the command "ir" for example.
    But I was quite surprised to not see in the list of stored results e(irr). Then I'm wondering how can I access to these results.
    Do you have any idea?

    Thank you in advance for your help

  • #2
    they are in the returned result r(table); so, after estimating your model, you can look at it via, e.g.,
    Code:
    mat li r(table)
    as with other returned results, you might first want to save it into another matrix, especially if you want more than one item from the matrix

    Comment

    Working...
    X