Stagger labels on an Influence plot in SAS?
I'm generating some plots (for a class) for a colorblind professor. The
JOURNAL2 style, in SAS, uses grey scale. However, the plots put all of the
points right on top of each other. Is there an option to scatter them
around the point or use call out lines so that they are easier to read?
Here's the code I'm using
ODS HTML STYLE = JOURNAL2;
PROC LOGISTIC DATA = fludata PLOTS(UNPACK ONLY LABEL) = (LEVERAGE DFBETAS
DPC INFLUENCE PHAT);
CLASS gender(PARAM = ref REF = 'Female')
newincome(PARAM = ref REF = '03 - High ');
MODEL flu(EVENT = 'Yes') = gender newincome / CTABLE PPROB = .49 TO
.5 BY .001;
OUTPUT OUT = predict P = pred;
RUN;
Here's an example of an illegible plot:
Any thoughts about a better way to do this?
No comments:
Post a Comment