![]() Chapter Contents |
![]() Previous |
![]() Next |
| The GCHART Procedure |
| Procedure features: |
| |||||||||||||
| Sample library member: | GR13N14 |
The second chart uses the NOCONNECT option so that the chart uses spines instead of slices.
| | libname reflib 'SAS-data-library';
goptions reset=global gunit=pct border cback=white
colors=(black blue green red) ftext=swiss
ftitle=swissb htext=3.5 htitle=6; |
| | data reflib.rejects; informat date date7.; input site $ date badparts; datalines; Sydney 01JAN97 22 Sydney 01FEB97 26 ...more data lines... Paris 01NOV97 12 Paris 01DEC97 19 ; |
| | title 'Rejected Parts'; footnote j=r 'GR13N14(a) '; |
| | proc gchart data=reflib.rejects;
format date worddate3.;
star date / discrete
sumvar=badparts
noheading
fill=s;
run; |
| | footnote j=r 'GR13N14(b) '; |
| | star date / discrete
sumvar=badparts
noheading
noconnect
coutline=red;
run;
quit; |
![]() Chapter Contents |
![]() Previous |
![]() Next |
![]() Top of Page |
Copyright © 1999 by SAS Institute Inc., Cary, NC, USA. All rights reserved.