Hello, I need to custom reorder my hbars in proc gchart. How do I do this?
Thanks,
Divya
Here's a new chapter I've written on this topic, with lots of examples...
http://robslink.com/SAS/book2/Chapter_01_Bar_Order.pdf
What release of SAS do you have? This is very easy with SGPLOT. Just put the categories in the order you want in the data, and use the option DISCRETEORDER=DATA on the YAXIS statement. Categories are shown top to bottom in data order. You can use REVERSE to flip it. Using program below, note "Hybrid" is last because it is last in the data.
proc sgplot data=sashelp.cars;
hbar type;
yaxis discreteorder=data;
run;
Here's a new chapter I've written on this topic, with lots of examples...
http://robslink.com/SAS/book2/Chapter_01_Bar_Order.pdf
thank you!!
Registration is open! SAS is returning to Vegas for an AI and analytics experience like no other! Whether you're an executive, manager, end user or SAS partner, SAS Innovate is designed for everyone on your team. Register for just $495 by 12/31/2023.
If you are interested in speaking, there is still time to submit a session idea. More details are posted on the website.
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.