Statistical Procedures

Programming the statistical procedures from SAS
BookmarkSubscribeRSS Feed
maggieKlein
Calcite | Level 5

I am using PROC GLIMMIX to run a generalized linear mixed model for binary data with logit link function while controlling for observations nested within subjects nested within centers.  We would like to be able to assess the model fit as well as the fit statistics for the conditional distribution.  When the following code is ran we see that the Pearson Chi-Square / DF is 0.71 suggesting under-dispersion.  Many posts I have read say this is the exception rather than the rule and is uncommon - not much is said about what this means for the model or solutions to the problem; any help is greatly appreciated!

 

proc glimmix data = dataFinal order = data method=quad empirical ;
  class subjectID centerID  sev(ref="1")
	   region(ref="North America") comorNMDflg(ref="0")
	   dailyDiureticsFLg(ref="0") avgICUadmitCollapse 
            icuRTmanageVentFlg(ref="0");
  model CompFlg(event="1") = sev PEEPConv_IR
					region comorNMDFlg 
		                       dailyDiureticsFLg 
				       rptTimeFrom avgICUadmitCollapse 
                                      icuRTmanageVentFlg
                                / dist=binary link=logit OR solution cl ;
  random intercept / subject = subjectID(centerID) ;
run;

There are 4,091 observations from 415 subjects and 70 centers.

fitSnip.JPG

1 REPLY 1
NMB82
Obsidian | Level 7

Did you ever find an answer to this? I'm running a very similar model right now and finding a similarly low chi sq/df indicating under-dispersion (.40).

sas-innovate-white.png

Join us for our biggest event of the year!

Four days of inspiring keynotes, product reveals, hands-on learning opportunities, deep-dive demos, and peer-led breakouts. Don't miss out, May 6-9, in Orlando, Florida.

 

View the full agenda.

Register now!

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
  • 707 views
  • 0 likes
  • 2 in conversation