proc mi data=widegrp1_2 seed=93538001 nimpute=50 out=newgrp1_2 noprint minimum= . 0 0 maximum= . 14 14 minmaxiter=600 ; class CSIRSTR TRT01PN ; fcs nbiter=50 reg(BASE = CSIRSTR); fcs nbiter=50 reg(W2 = CSIRSTR BASE); /*[MESURE]='DD'*/ MNAR model(W2/ modelobs=(TRT01PN = '3')); var CSIRSTR BASE W2; run; For the above code, even after I specify minimum and maximum value for all variable listed inn VAR statment, I still get the following WARNING WARNING: The specified nonmissing MINIMUM= 0 option for the CLASS variable CSIRSTR is not allowed. This option will be ignored. WARNING: The specified nonmissing MAXIMUM= 14 option for the CLASS variable CSIRSTR is not allowed. This option will be ignored. Is there a way to avoid these WARNING ? Should I modify MNAR statement?
... View more