BookmarkSubscribeRSS Feed
Gayatriv
Calcite | Level 5

I am using proc glimmix but my model is not converging for two random effect however running without error but one warning:

WARNING: Obtaining minimum variance quadratic unbiased estimates as starting values for the covariance parameters failed.

 

proc glimmix data=remi.final_rem_gv method=quad;
class phc_name village gender;
model remission = gender/ s dist=poisson link=log offset=duration ddfm=none;
RANDOM INTERCEPT / SUBJECT=phc_name S CL TYPE=VC;
RANDOM INTERCEPT / SUBJECT=village(PHC_NAME) S CL TYPE=VC;
COVTEST /wald;
ods output estimates=est1 (keep= label ExpEstimate ExpLower Expupper Probt
rename=(ExpEstimate=or ExpLower=lower Expupper=upper Probt=pval)) CovParms=CovParms ;
run;

1 REPLY 1
jiltao
SAS Super FREQ

You might use PARMS statement to specify your own starting values for the two variance components. For example,

parms (0.1)(0.05);

This could take several trial and error.

Thanks,

Jill

SAS Innovate 2025: Call for Content

Are you ready for the spotlight? We're accepting content ideas for SAS Innovate 2025 to be held May 6-9 in Orlando, FL. The call is open until September 16. Read more here about why you should contribute and what is in it for you!

Submit your idea!

What is ANOVA?

ANOVA, or Analysis Of Variance, is used to compare the averages or means of two or more populations to better understand how they differ. Watch this tutorial for more.

Find more tutorials on the SAS Users YouTube channel.

Discussion stats
  • 1 reply
  • 352 views
  • 1 like
  • 2 in conversation