SAS GChart
A procedure for creating graphics.
Contents
Usage
proc gchart data=LIBREF.TABLE;
format VAR VAR_f.;
donut VAR;
run;
quit;
Donut Statement
To create a donut chart, use the DONUT statement.
To apply a weight factor to the data, set the FREQ option.
proc gchart data=LIBREF.TABLE;
format VAR VAR_f.;
donut VAR / freq=WT;
run;
quit;