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 2009, week 4)Back to main SAS-L pageJoin or leave SAS-L (or change settings)ReplyPost a new messageSearchProportional fontNon-proportional font
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*;


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