| Date: | Wed, 23 Dec 2009 03:27:48 -0600 |
| Reply-To: | Kumar Mainali <kpmainali@GMAIL.COM> |
| Sender: | "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU> |
| From: | Kumar Mainali <kpmainali@GMAIL.COM> |
| Subject: | How to display axis value on boxplot |
| Content-Type: | text/plain; charset=ISO-8859-1 |
|---|
Hello again,
Below is my code for creating boxplot of savings in each of the days of the
week. I would like to display y axis value for each of the quartiles. Any
help?
Thanks,
Kumar
*proc* *sort* data = alllist;
by day;
*run*;
goptions reset = all;
*proc* *boxplot* data = alllist;
plot saving_perc*end_day;
*run*;
|