Announcement

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

  • Non convergence in regression with Multiple Imputation

    I am trying to run my regressions, but it always Shows the error:
    convergence not achieved
    convergence not achieved
    model did not converge on m=1
    r(430);


    My Regression specification:

    foreach yvar of local zeroinfl {


    *Model 2
    foreach xvar of local stress {
    mi estimate, cmdok irr: zip `yvar' `xvar' partner_`xvar' `controls', inf(`yvar') vuong

    Anyone knows how to solve it?
    Thank you

  • #2
    I am not commenting on anything else, but I do not believe that you really want

    Code:
    zip ... , inf(`yvar')
    What you (probably) wanted here is

    Code:
    zip ... , inf(_cons)
    Note that you can add option noisily to mi estimate to see what is going on.

    Best
    Daniel

    Comment


    • #3
      Thank you for that, Daniel. That was actually another question. I was not sure about it.

      Comment

      Working...
      X