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!!
April 27 – 30 | Gaylord Texan | Grapevine, Texas
Walk in ready to learn. Walk out ready to deliver. This is the data and AI conference you can't afford to miss.
Register now and lock in 2025 pricing—just $495!
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.