|
Greetings,
I am producing a boxplot for four groups. I need it to go into a slide
for a presentation. I am less than satisfied with the appearance for two
reason. The first is that the text, such as the legends and tick mark
values are jagged. The second is that it is smaller than I would like and
does not appear to be in the landscape orientation. My code is:
options orientation=landscape;
ods rtf file="D:\Kevin\Factor VIII\ASH\fVIII_boxplot.rtf";
axis1 order=(0 to 350 by 50)
label=(font=swiss height=1.5 "fVIII Activity" "(%)")
value=(font=swiss height=0.5)
length=7 in;
axis2 label=(font=swiss height=2 "Amino acid at residue 1241")
value=(font=swiss height=1.5)
length=10 in;
proc boxplot data=SNP23;
plot fVIII*AA_1241 / boxstyle=schematic
vaxis=axis1
haxis=axis2;
run;
ods rtf close;
I would appreciate any comments.
Thanks,
Kevin
Kevin Viel
Department of Epidemiology
Rollins School of Public Health
Emory University
Atlanta, GA 30322
|