The GRADAR Procedure |
Procedure features: |
| ||
Data set: | FAILURE | ||
Sample library member: | GRROVER |
The most typical way that radar charts are displayed is to overlay the charts on top of each other. To produce an overlay chart, use the OVERLAY= option on the CHART statement. On the OVERLAY= option, specify the classification variable whose values determine the charts to be overlaid. This example shows two blocks of code. For overlay charts with multiple stars, the lines for the stars are rotated through different line styles and colors so that the different stars can be easily seen.
In the following example, the OVERLAY= option specifies variable DAY as the overlay variable.
goptions reset=all border; proc gradar data=failure; chart cause / freq=count overlayvar=day; run; quit;
Copyright © 2010 by SAS Institute Inc., Cary, NC, USA. All rights reserved.