| Date: | Thu, 24 Jul 2008 12:36:26 -0400 |
| Reply-To: | Questions SAS <questions.sas@GMAIL.COM> |
| Sender: | "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU> |
| From: | Questions SAS <questions.sas@GMAIL.COM> |
| Subject: | Proc Boxplot - vertical axis question |
| Content-Type: | text/plain; charset=ISO-8859-1 |
Hello everyone,
How can I fix the code below so that SAS prints the vertical axis so
that it reads from the bottom to the top on its side (i.e., so that
the bottom of the letters face the Y-axis)?
symbol1 v=plus c=bib;
title ' ';
proc boxplot data=temp ;
plot expos*casectrl /
boxstyle = schematic
boxwidth = 8
cframe = vligb
cboxes = dagr
cboxfill = wh
idcolor = salmon
nohlabel;
label expos = 'Exposure';
run;
|