Dear All, I am using 9.4 (TS1M5). I am trying to write ods output while using a weighted proc gee by imputation. While it does generate ods output GEEEmpPEst and GEERCov, I get an error message for parminfo: Output 'ParmInfo' was not created. Make sure that the output object name, label, or path is spelled correctly. Also, verify that the appropriate procedure options are used to produce the requested output object. For example, verify that the NOPRINT option is not used. I have tried adding the PRINTMLE option to the repeated statement which was suggested for a similar problem on this board. That did not work. Here is my code: Proc gee data = a;
where age_mo <= &age;
weight weight;
by _imputation_;
Class psnum visit haz4 (ref = '3') season (ref = first) sector (ref = first)
hbasch (ref = 'AA') /param = ref;
Model &malvar = haz4 nmanem4 laginfection season momed ses2 age_mo age_mosq age_mocu
malaria sector mompar hbasch sexa lagzheight lag2zheight mal1prev mal2prev haz4*nmanem4 / dist = mult link = glogit;
Repeated subject = psnum / within = visit ECOVB;
ods output GEEEmpPEst=parm_zheight_int_nma_&malvar ParmInfo= parminfo GEERCov= cov_&malvar;
run; Any suggestion will be appreciated please. Thanks Katy
... View more