Chapter Contents |
Previous |
Next |
INSET Statement |
data location; length _LABEL_ $ 10 _VALUE_ $ 12; input _LABEL_ _VALUE_ &; datalines; Plant Santa Clara Line 1 ;
title 'IC Failures'; proc pareto data=failure3; hbar cause / freq = counts maxncat = 5 cframe = ligr cbars = vigb cconnect = salmon; inset data = location n nexcl / height = 3; position = rm cfill = ywh ctext = vigb cshadow = black header = 'Count Summary'; run;
The header (in this case, Count Summary) can be up to 40 characters. Note that a longer list of inset statistics is requested. Consequently, POSITION=RM is specified to position the inset in the right margin so that it does not interfere with features of the chart. For more information about positioning, see "Details". The CSHADOW= option is used to display a drop shadow on this inset. The options, such as HEADER=, POSITION= and CSHADOW=, are specified after the slash (/) in the INSET statement. For more details on INSET statement options, see "Dictionary of Options".
Note that the contents of the data set LOCATION appear before other statistics in the inset. The position of the DATA= keyword in the keyword list determines the position of the data set's contents in the inset.
Chapter Contents |
Previous |
Next |
Top |
Copyright © 1999 by SAS Institute Inc., Cary, NC, USA. All rights reserved.