I want to order the bars in the bar chart, based on my own order, not by the default order. Is there a way to do it?
Thanks
Hi have a look at the VALUES= option of the XAXIS statement.
Find below a code sample:
proc sgplot data=sashelp.cars tmplout="c:/temp/sgplot.sas";
vbar type / response=Horsepower stat=mean;
xaxis values=("SUV" "Hybrid" "Wagon" "Truck");
run;
Bruno
Yes. Sort the data set so that the categories appear i nthe order you want. Then use the XAXIS DISCRETEORDER=DATA option to tell the plot to use the order of the categories as they appear in the data set:
proc sgplot data=sashelp.cars;
vbar Type;
xaxis discreteorder=data;
run;
For more elaborate examples, see the article "Order variables by values of a statistic"
Hi have a look at the VALUES= option of the XAXIS statement.
Find below a code sample:
proc sgplot data=sashelp.cars tmplout="c:/temp/sgplot.sas";
vbar type / response=Horsepower stat=mean;
xaxis values=("SUV" "Hybrid" "Wagon" "Truck");
run;
Bruno
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!
Still thinking about your presentation idea? The submission deadline has been extended to Friday, Nov. 14, at 11:59 p.m. ET.
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.