I got this box plot created with pre proc sor data:
proc sgplot data=weight;
VBOX weightgain /category=orientation group=box;
run;
Category=orientation, sorted by Proc Sort alphabetically is East, North, South West and shows as is on VBOX Xaxis
Is there an easy statement / options in Proc GPLOT VBOX to re-order my char category as West, East, South, North on Xaxis? without involving creating another data set?
Possibly
xaxis values=('West' 'East' 'South' 'North' );
The values have to be as in the actual dataset for case.
Since graphs are data dependent, sometimes in funny ways it is hard to diagnose without data. Can you post your data? https://communities.sas.com/t5/SAS-Communities-Library/How-to-create-a-data-step-version-of-your-dat... has instructions on created data step text code that can be pasted here to recreate you data set.
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 the difference between classical and Bayesian statistical approaches and see a few PROC examples to perform Bayesian analysis in this video.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.