- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
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?
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
Possibly
xaxis values=('West' 'East' 'South' 'North' );
The values have to be as in the actual dataset for case.
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
proc sgplot data=weight;
VBOX weightgain /category=box group=orientation;
xaxis values=('West' 'East' 'South' 'North' );
run;
getting closer but not quite yet???
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
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.
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content