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
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;
|