190 Producing High-Quality Figures Using SAS/Graph
®
and ODS Graphics
SIZE = 2; HSYS = ‘4’; XSYS = ‘2’; YSYS = ‘2’;
* draw the vertical line connecting lcl and ucl *;
%LINE(index, lcl, index, ucl, black, 1, SIZE);
* lower bar for 95% CI;
%LINE(index-SHIFT_VAL, lcl, index+SHIFT_VAL, lcl, black, 1,
SIZE);
%* upper bar for 95% CI;
%LINE(index-SHIFT_VAL, ucl, index+SHIFT_VAL, ucl, black, 1,
SIZE);
RUN;
%LET FONTNAME = Times;
%LET DRIVER = PSCOLOR;%LEt EXT = PS;
goptions
reset = all
GUNIT = PCT
rotate = landscape
gsfmode = replace
gsfname = GSASFILE
device = &DRIVER
lfactor = 1
hsize = 8 in
horigin = 0.5 in
vsize = 6.5 in
vorigin = 0.75 in
ftext = “&FONTNAME”
htext = 10pt
ftitle = “&FONTNAME”
htitle = 10pt
;
SYMBOL ...