BookmarkSubscribeRSS Feed
rebeccachau
Obsidian | Level 7

I have a cross-sectional GEE model clustered by facility (nursing home). The dv is depression score for each participant, and there are a series of predictors (activities of daily living, mini mental state, physical pain, sleep).

 

I have completed multivariate normal multiple imputation, and this has generated non-integer responses. Consequently, when I run the GEE analysis in SAS I get the following error message:

"WARNING: Some observations with invalid response values have been deleted. The response was less than or equal to zero for the
Gamma or Inverse Gaussian distributions or less than zero for the Negative Binomial or Poisson distributions."
This warning appears 4 times, for 4 of the 20 imputations. Because the imputation process estimates so much additional data that is then pooled, I am inclined to think that this warning can be ignored. Any advice?
 
Below is my code:
PROC GENMOD DATA=WORK.IMPORT;
CLASS FAC;
MODEL GDS=ADL MMSE NHP PEFIT SD MSPSP / DIST=POISSON LINK=LOG COVB;
BY _Imputation_;
REPEATED SUBJECT=FAC;
ODS OUTPUT
ParameterEstimates=a_mvn;
SCALE=1;
RUN;

PROC MIANALYZE parms=a_mvn;
modeleffects intercept ADL MMSE NHP PEFIT SD MSPSP;
RUN;
1 REPLY 1
SAS_Rob
SAS Employee

I assume you are using Proc MI to do the imputation.  If so, you might consider using the MIN= and ROUND= option to impute only integers.  While MI does not specifically impute Poisson variables, in most cases it would be robust enough to handle using the MIN= and ROUND= options to make it Poisson.

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 25. 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
  • 713 views
  • 2 likes
  • 2 in conversation