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 (January 2007, week 5)Back to main SAS-L pageJoin or leave SAS-L (or change settings)ReplyPost a new messageSearchProportional fontNon-proportional font
Date:         Wed, 31 Jan 2007 12:37:12 -0800
Reply-To:     "nirad.p@gmail.com" <nirad.p@GMAIL.COM>
Sender:       "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From:         "nirad.p@gmail.com" <nirad.p@GMAIL.COM>
Organization: http://groups.google.com
Subject:      Problem in Bar Graph
Comments: To: sas-l@uga.edu
Content-Type: text/plain; charset="iso-8859-1"

dear folks, I want to comapre Maximum and Median price for land in particular year.To do this i have to plot median and maximum value side by side according to year in single chart.I used this procedure but it did not plot graph for maximum.Can you help me out with this .Thank you.

proc gchart data=TAB_PRICE; vbar year / discrete sumvar = median midpoints = 2005 2006 legend=legend maxis=axis1 raxis=axis2 group= maximum des='GR23N21-1'; by LMANAME; run; quit;


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