I am doing reference coding and this confuses me. All my variables are dummy variables coded 1 and 0.
This is the code
PROC LOGISTIC DATA=WORK.SORTTempTableSorted
PLOTS(ONLY)=ALL
;
CLASS pd2 (PARAM=REF) pd1 (PARAM=REF) pd3 .....;
MODEL DVD (Event = '1')=pd1 pd2 pd3 pd4 pd5 pd6 pd7 pd8 pd9 pd10 pd11 pd12 pd13 pd15 pd16 pd17 pd18 pd19 pd20 pd21 pd22 pd23 pd24 pd25 pd26 pd27 pd28 pd29 pd30 pd31 pd14 /
SELECTION=NONE
LINK=LOGIT
;
RUN;
QUIT;
For the odds ratio the results are
So 1 has a greater impact on the DV taking on a value of 1. I am just not sure what 1 means here. Is is the way I coded it in my raw data or did sas change this by creating new design variables?
It says this, Is this effectively reversing the way I code the variables in the raw data?

This is the code
PROC LOGISTIC DATA=WORK.SORTTempTableSorted
PLOTS(ONLY)=ALL
;
CLASS pd2 (PARAM=REF) pd1 (PARAM=REF) pd3 .....;
MODEL DVD (Event = '1')=pd1 pd2 pd3 pd4 pd5 pd6 pd7 pd8 pd9 pd10 pd11 pd12 pd13 pd15 pd16 pd17 pd18 pd19 pd20 pd21 pd22 pd23 pd24 pd25 pd26 pd27 pd28 pd29 pd30 pd31 pd14 /
SELECTION=NONE
LINK=LOGIT
;
RUN;
QUIT;
For the odds ratio the results are

So 1 has a greater impact on the DV taking on a value of 1. I am just not sure what 1 means here. Is is the way I coded it in my raw data or did sas change this by creating new design variables?
It says this, Is this effectively reversing the way I code the variables in the raw data?
