Announcement

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

  • Goodness of fit in outreg2

    Hello,
    I'm using the outreg2 command with multiple ordinal regressions, I want to add a column with a measurment of goodness of fit (either McFadden or Cox and Snell), how to I do it?

    my script so far:

    svyset [pweight=w8_9weight2022]
    svy: ologit w8pm_sat w8fear_ w8disguise_
    outreg2 using w8pm_sat.xls, replace ctitle(Model 1)
    svy: ologit w8pm_sat w8fear_ w8disguise_ $control_w8
    outreg2 using w8pm_sat.xls, append ctitle(Model 2)
    svy: ologit w8pm_sat w8fear_ w8disguise_ $control_w8 $responsibility_w8
    outreg2 using w8pm_sat.xls, append ctitle(Model 3)
    svy: ologit w8pm_sat w8fear_ w8disguise_ $control_w8 $responsibility_w8 fear_w8resp_protest-fear_w8resp_oppos anger_w8resp_protest-anger_w8resp_oppos
    outreg2 using w8pm_sat.xls, append ctitle(Model 4)
    svy: ologit w8pm_sat w8fear_ w8disguise_ $control_w8 $responsibility_w8 fear_w8resp_protest-fear_w8resp_oppos anger_w8resp_protest-anger_w8resp_oppos w7reformsupport
    outreg2 using w8pm_sat.xls, append ctitle(Model 5)
Working...
X