I am trying to get a boxplot to appear in my work.gseg folder. I am using a code that has run without error prior to upgrading to 9.3, but now I cannot get the boxplot to display correctly. Below is the code used to generate the boxplot. Any ideas as to why it won't display in gseg?
goptions xpixels=300 ypixels=200;
title;
axis1 order = (0 to 1500 by 250)
label = (height = 1.25 'CD4')
minor = (number = 1) ;
axis2 label = (height = 1.25 'Gender') ;
symbol value = dot
height = 0.5 ;
proc boxplot data=cd4case2 ;
plot (cd4cnt)*birth_sex /
vaxis = axis1
haxis = axis2
cboxfill = TAN
cboxes = BL
name='plot6';
insetgroup mean (5.1) n / header = 'Median CD4 - Dx in Past 6 Months'
pos = topoff
cfill = YELLOW ;
run;
quit;