Previous Page | Next Page

The GRADAR Procedure

Example 6: Modifying the Appearance of Radar Charts


Procedure features:

CSTARS=

FREQ=

LSTARS=

OVERLAYVAR=

STARCIRCLES=

WSTARS=

Data set: FAILURE
Sample library member: GRRAPEAR

[untitled graphic]

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. Rather than relying on the default rotation patterns, you can control the line colors, widths, and styles with the CSTARS=, LSTARS=, and WSTARS= options.

This example features the following options:

goptions reset=all border;

proc gradar data=failure;
    chart cause /  freq=count
       overlayvar=process
       cstars=(red, blue)
       wstars=2 2
       lstars=1 1
       starcircles=(0.5 1.0);
run;
quit; 

Previous Page | Next Page | Top of Page