|
⇤ ← Revision 1 as of 2023-03-30 20:43:04
Size: 394
Comment:
|
← Revision 2 as of 2023-03-30 20:45:40 ⇥
Size: 501
Comment:
|
| Deletions are marked like this. | Additions are marked like this. |
| Line 14: | Line 14: |
| proc gchart data=IPUMS.houses; | proc gchart data=LIBREF.TABLE; |
| Line 16: | Line 16: |
| donut VAR / discrete clockwise slice=outside value=none percent=outside freq=WT; | donut VAR; |
| Line 27: | Line 27: |
| 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; }}} |
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;