LISTSERV at the University of Georgia
Menubar Imagemap
Home Browse Manage Request Manuals Register
Previous messageNext messagePrevious in topicNext in topicPrevious by same authorNext by same authorPrevious page (December 2003, week 1)Back to main SAS-L pageJoin or leave SAS-L (or change settings)ReplyPost a new messageSearchProportional fontNon-proportional font
Date:   Wed, 3 Dec 2003 12:31:24 -0500
Reply-To:   Kevin Roland Viel <kviel@EMORY.EDU>
Sender:   "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From:   Kevin Roland Viel <kviel@EMORY.EDU>
Subject:   boxplot, RTF, and appearance
Content-Type:   TEXT/PLAIN; charset=US-ASCII

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


Back to: Top of message | Previous page | Main SAS-L page