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.
goptions reset=global gunit=pct border cback=white colors=(black blue green red) ftext=swiss ftitle=swissb htext=3.5 htitle=6; |
data rejects; informat date date9.; input site $ date badparts; datalines; Sydney 01JAN1997 22 Sydney 01FEB1997 26 ...more data lines... Paris 01NOV1997 12 Paris 01DEC1997 19 ; |
title 'Rejected Parts'; footnote j=r 'GR13N14(a) '; |
proc gchart data=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.