Previous Page | Next Page

The GRADAR Procedure

Example 5: Using Multiple Classification Variables in Radar Charts


Procedure features:

ACROSSVAR=

DOWNVAR=

FREQ=

STARTYPE=

NCOLS=

NROWS=

STARLEGEND=

Data set: FAILURE
Sample library member: GRRTWOWY

[untitled graphic]

You can study the effects of two classifications simultaneously with a two-way comparative radar chart. This arrangement provides the opportunity to discover both one-way marginal effects and interaction effects. To produce the chart, use both the ACROSSVAR= and DOWNVAR= options.

This example features the following options:

goptions reset=all border;

proc gradar data=failure;
    chart cause / acrossvar=day
        downvar=process
        freq=count
        startype=spoke
        nrows=2 ncols=5
        starlegend=clock;
run;
quit;

Previous Page | Next Page | Top of Page