Chapter Contents
Chapter Contents
Previous
Previous
Next
Next
Graphical Enhancements

Specifying the Style of Stars

See SHWSTR2 in the SAS/QC Sample Library

The following statements create star charts for paint index using different styles for the stars specified with the STARTYPE= option:

   title 'Variables Related to Paint Index';
 
   proc shewhart history=paint limits=paintlim;
   
      xchart pindex * hour /
         nolegend
         starvertices = ( thick gloss defects dust humid temp )
         starstart    = '1:00'T
         startype     = wedge
         cframe       = vibg
         cstars       = salmon
         cconnect     = salmon
         cinfill      = ywh;

      xchart pindex * hour /
         nolegend
         starvertices = ( thick gloss defects dust humid temp )
         starstart    = '1:00'T
         startype     = radial
         cframe       = vibg
         cstars       = salmon
         cconnect     = salmon
         cinfill      = ywh;

      xchart pindex * hour /
         nolegend
         starvertices = ( thick gloss defects dust humid temp )
         starstart    = '1:00'T
         startype     = spoke
         cframe       = vibg
         cstars       = salmon
         cconnect     = salmon
         cinfill      = ywh;

      xchart pindex * hour /
         nolegend
         starvertices = ( thick gloss defects dust humid temp )
         starstart    = '1:00'T
         startype     = corona
         cframe       = vibg
         cstars       = salmon
         cconnect     = salmon
         cinfill      = ywh;

run;
The charts are shown in Figure 44.18, Figure 44.19, Figure 44.20, and Figure 44.21. The default style for the stars is STARTYPE=POLYGON, which is illustrated in Figure 44.16 and Figure 44.17. For more information, see the entry for the STARTYPE= option in Chapter 43, "Dictionary of Options,".

gstar5.gif (6477 bytes)

Figure 44.18: Star Chart Using STARTYPE=WEDGE

gstar6.gif (6076 bytes)

Figure 44.19: Star Chart Using STARTYPE=RADIAL

gstar7.gif (6153 bytes)

Figure 44.20: Star Chart Using STARTYPE=SPOKE

gstar8.gif (6387 bytes)

Figure 44.21: Star Chart Using STARTYPE=CORONA

Chapter Contents
Chapter Contents
Previous
Previous
Next
Next
Top
Top

Copyright © 1999 by SAS Institute Inc., Cary, NC, USA. All rights reserved.