Instructions
Start ODS graphics. Before SAS can display graphs, you must tell it that graphics are coming up by putting ODS graphics on in your SAS program.
Write a PROC LOGISTIC model as you ordinarily would. In the example, this might look like
PROC LOGISTIC DATA = MYDATA;
CLASS RACE;
MODEL PARTY = RACE INCOME AGE;
Add an EFFECTPLOT statement and run the program. The example would become
PROC LOGISTIC DATA = MYDATA;
CLASS RACE;
MODEL PARTY = RACE INCOME AGE;
EFFECTPLOT;
RUN;