Dear all,
I am trying to do multiple imputation, by treatment group.
i am running the following code:
proc MI data= raw seed=46485 nimpute=5 out= temp ;
class trt01p ;
var trt01p base month1 month3 ;
monotone reg (month3 = base month1/details) discrim( trt01p /classeffects = include ) ;
run;
the log always came up with a warning message:
WARNING: The imputed variable TRT01P in the MONOTONE statement is the leading variable in the VAR list. Missing values for this
variable will not be imputed.
What is the issue here? should I use 'by treatment' other than 'class treatment', and also do not include treatment in the var list and monmontone statement?
Thanks very much
SL