Announcement

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

  • Survival Analysis from Pooled Data

    Hi all. I'm relatively new to Stata so hopefully this is an easy question to answer:

    Using Stata/Now [BE 18.5]
    I'm trying to run a survival (Cox) analysis on data that I've imputed using MICE. When I run this command, the result doesn't show hazard ratios (only coefficients)... any idea how I can get the HRs?

    mi estimate: stcox i.categ_var1 i.categ_var2 contin-var1, hr

    I tried running it on the first imputed dataset and it does give the HRs:

    mi xeq 1: stcox i.categ_var1 i.categ_var2 contin-var1, hr





  • #2
    Code:
    mi estimate, hr: stcox i.categ_var1 i.categ_var2 contin-var1

    Comment

    Working...
    X