Announcement

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

  • #16
    Another question: Does not the result, shown above, after
    Code:
     mixed Complication || Id:
    Code:
     LR test vs. linear model: chibar2(01) = 0.00 Prob >= chibar2 = 1.0000
    imply that a multilevel model does not provide a significantly better fit to the data than a single level model without random effects. In other words; I could skip using random effects on Id?

    Comment


    • #17
      Yes I agree, the random intercepts for ID are not useful here. Even the results for the hospital intercepts from model1 are not impressive. I think any of the following might suffice:

      Code:
      xtset hospital
      xtlogit ...
      Maybe you can just use a LPM (if the mean of complication is not too extreme) and go

      Code:
      areg ..., absorb(hospital) vce(robust)
      Best wishes

      (Stata 16.1 MP)

      Comment


      • #18
        Thank you Felix. I might even consider not using RE on Hospital. Many thanks for your help!

        Comment

        Working...
        X