MCMC estimates when IGLS algorithm fails to converge
Posted: Tue Sep 26, 2017 5:54 pm
Hello,
I am running a cross-classified binary logit model using the following code:
Output shows parameter estimates for the MCMC estimation, but under the IGLS output I see, "WARNING: IGLS algorithm failed to converge." How can one interpret the MCMC results given the IGLS algorithm failed to converge? Should one dismiss the MCMC results outright given the initialization values are in question? As a solution, should I use MQL1 instead of PQL2 (though I had chosen PQL2 given it is the most accurate of the four quasi-likelihood methods and my within higher level units are small (mean 2.6 for levels 2 and 4) and the response proportion is (relatively) extreme (prob=0.113)?
Thank you!
Kate
I am running a cross-classified binary logit model using the following code:
Code: Select all
sort nhood_w1 scid modmax_groupid aid
xi: quietly runmlwin pregfw2 i.race i.parent_highestedu ///
i.region i.h1co10 cons, level4(nhood_w1:cons) level3(scid: cons) ///
level2(modmax_groupid:cons) level1(aid:) ///
discrete(dist(binomial) link(logit) denom(cons) pql2) nopause
xi: runmlwin pregfw2 i.race i.parent_highestedu ///
i.region i.h1co10 cons, level4(nhood_w1:cons) level3(scid: cons) ///
level2(modmax_groupid:cons) level1(aid:) ///
discrete(dist(binomial) link(logit) denom(cons)) mcmc(cc) initsprevious nopause
Thank you!
Kate