Quantcast
Channel: Statistics Help @ Talk Stats Forum - SAS
Viewing all articles
Browse latest Browse all 310

Proc logistic-multivariate logistic regression

$
0
0
I am doing multivariate logistic regression with CGR and OBST as dependent varaibles. I used the syntax below. But I got the message that says that OBST is not found. I am using SAS enterprise. We can put 1 dependent variable in the dependent variable line. How can I put another dependent variable?

PROC LOGISTIC DATA=WORK.TMPMod
PLOTS(ONLY)=ALL
;
MODEL __RESPONSE OBST=LOS PAY1 PL_NCHS2006 RACE ZIPINC_QRTL FEMALE /
SELECTION=NONE
LINK=LOGIT
CLPARM=BOTH
CLODDS=BOTH
ALPHA=0.05
;
UNITS FEMALE =1 0*SD;
RUN;
QUIT;

Viewing all articles
Browse latest Browse all 310

Trending Articles