[See SHWINS2 in the SAS/QC Sample Library]You can specify the eight compass points N, NE, E, SE, S, SW, W, and NW as keywords for the POSITION= option. The following statements create the display in Figure 13.16, which demonstrates all eight compass positions. The default is NW.
ods graphics off; proc pareto data=Failure3; vbar Cause / freq = Counts; inset n / height=3 cfill=blank header='NW' pos=nw; inset n / height=3 cfill=blank header='N ' pos=n ; inset n / height=3 cfill=blank header='NE' pos=ne; inset n / height=3 cfill=blank header='E ' pos=e ; inset n / height=3 cfill=blank header='SE' pos=se; inset n / height=3 cfill=blank header='S ' pos=s ; inset n / height=3 cfill=blank header='SW' pos=sw; inset n / height=3 cfill=blank header='W ' pos=w ; run;