SAS PROGRAMMING HANDOUT #32 DATA JIM; INPUT A $ Y X ; CARDS; AA 74.1 63.1 BB 58.4 58.3 CC 48.6 41.0 DD 33.2 39.2 ; GOPTIONS reset=all ftext=swissb device=win lfactor=2; axis1 style=0 major=none minor=none value=none label =none; axis2 major=none minor=none style=0 value=none length= 6 in label =none; PROC GPLOT; TITLE1 H=2 F=SWISSB 'MAPPING'; PLOT Y*X/vaxis=axis1 haxis=axis2 href=48 vref=56; SYMBOL1 V=DOT H=.8; note f=swiss h=1.15 move=(41pct,81pct) 'Y+'; note f=swiss h=1.15 move=(42pct,3pct) 'Y-'; note f=swiss h=1.15 move=(80pct,44pct) 'X+'; note f=swiss h=1.15 move=(8pct,44pct) 'X-'; note f=swiss h=0.65 move=(75pct,71pct) 'AA'; note f=swiss h=0.65 move=(68pct,47pct) 'BB'; note f=swiss h=0.65 move=(36pct,35pct) 'CC'; note f=swiss h=0.65 move=(32pct,11pct) 'DD'; note f=centxi h=1.50 move=(10pct,84pct) "'Q2'"; note f=centxi h=1.50 move=(85pct,84pct) "'Q1'"; note f=centxi h=1.50 move=(10pct,10pct) "'Q3'"; note f=centxi h=1.50 move=(85pct,10pct) "'Q4'"; RUN; TITLE; QUIT;