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-white.png

Register Today!

Join us for SAS Innovate 2025, our biggest and most exciting global event of the year, in Orlando, FL, from May 6-9. Sign up by March 14 for just $795.

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