Suppose i have the following sample dataset:
Group Variable Value
A z 2
A x 1
A y 3
B z 5
B x 2
B y 8
C z 3
C x 4
C y 5
I'm using PROC SGPANEL to produce a graph for the above data:
proc sgpanel data = data1 noautolegend; panelby Group / onepanel layout= columnlattice novarname border; vbar Variable/ group= Group groupdisplay=cluster groupOrder = data response= Value ; rowaxis label = 'Change(%)'; colaxis label = ' '; run;
In the result, for each group, the default arrangement of 'Variable' is in ascending order i.e. no matter how it is in the data. In the graph, 'Variable' is shown with x,y followed by z. But i need it exactly the way mentioned in the above example i.e. z, followed by x, and then followed by y.
I'm using the latest version of Base SAS 9.4
If your data is in the desired order, you can update your rowaxis statement to:
rowaxis label = 'Change(%)' discreteorder=data;
If your data is in the desired order, you can update your rowaxis statement to:
rowaxis label = 'Change(%)' discreteorder=data;
Use GROUPORDER=DATA on the VBAR statement to keep the group order.
To control axis appearance look at axis options:
See if this works for you
colaxis label = ' ' values=( 'z' 'x' 'y');
SAS Innovate 2025 is scheduled for May 6-9 in Orlando, FL. Sign up to be first to learn about the agenda and registration!
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.