Hello, everyone,
I have ran into trouble for some time, when I tried to create some bar charts..
First, I would like to create a side by side bar chart with proc template,
However, due to my sas version (9.2 TS2M0), I can not use the option "Discreteoffset"... then how can I create side by side bar charts with proc template?
... I can only get overlaid charts!!
Second, I want to add the statitics to the bar.. Still I couldn't use the "Barlabel" option...then I don't know how I can add labels to the bar....
Sample Data:
Data figure18;
Input Province $ Percent1 Percent2;
Cards;
BC 16.427 15.995
AB 15.461 14.470
YT 15.279 14.616
MB 16.980 10.014
CAN 13.987 11.714
;
Run;
Proc Template;
Define Statgraph barchart;
Begingraph;
Layout Overlay ;
Barchart X=Province Y=Percent1 / Barlabel=True Discreteoffset=-0.2;
Barchart X=Province Y=Percent2 / Barlabel=True Discreteoffset= 0.2;
Endlayout;
Endgraph;
End;
Run;
Thank you alot in advance for any suggestions!!!!!
With SAS9.2, you can use the SGPANEL procedure to create side-by-side grouped bar charts. See 3rd graph in this blog article: Cluster Groups
Join us for SAS Innovate 2025, our biggest and most exciting global event of the year, in Orlando, FL, from May 6-9. Sign up by March 14 for just $795.
Learn how use the CAT functions in SAS to join values from multiple variables into a single value.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.