Previous Page | Next Page

The GRADAR Procedure

Example 3: Overlaying Radar Charts


Procedure features:

FREQ=

OVERLAYVAR=

Data set: FAILURE
Sample library member: GRROVER

[untitled graphic]

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;

Previous Page | Next Page | Top of Page