Hi again Reeza, As I start buidling multivariable model it again creates problem. Here are my codes and logs, once again thanks for your help. proc logistic data=pe.matchedata_21 desc; strata group; class CMV_ca_2_1 (ref='Absent')/param=ref bmicat (ref='Less than 25')/param=ref; format CMV_ca_2_1 CMV_igg. bmicat bmicat.; model PEstatus (event='1')= CMV_ca_2_1 bmicat; exact CMV_ca_2_1 bmicat / estimate = both; oddsratio cmv_ca_2_1 bmicat; run; 153 proc logistic data=pe.matchedata_21 desc; NOTE: Data file PE.MATCHEDATA_21.DATA is in a format that is native to another host, or the file encoding does not match the session encoding. Cross Environment Data Access will be used, which might require additional CPU resources and might reduce performance. NOTE: PROCEDURE LOGISTIC used (Total process time): real time 0.01 seconds cpu time 0.01 seconds NOTE: The SAS System stopped processing this step because of errors. 154 strata group; 155 class CMV_ca_2_1 (ref='Absent')/param=ref bmicat (ref='Less than 25')/param=ref; ------ 22 76 ERROR 22-322: Syntax error, expecting one of the following: ;, CODING, CPREFIX, DESC, DESCENDING, LPREFIX, MISSING, ORDER, PARAM, REF, REFERENCE, TRUNCATE. ERROR 76-322: Syntax error, statement will be ignored. 156 format CMV_ca_2_1 CMV_igg. bmicat bmicat.; 157 model PEstatus (event='1')= CMV_ca_2_1 bmicat; 158 exact CMV_ca_2_1 bmicat / estimate = both; 159 oddsratio cmv_ca_2_1 bmicat; 160 run;
... View more