SAS Procedures

Help using Base SAS procedures
BookmarkSubscribeRSS Feed
jackice
Calcite | Level 5

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? 

4 REPLIES 4
ballardw
Super User

 

 

Possibly

xaxis values=('West' 'East' 'South' 'North' );

 

The values have to be as in the actual dataset for case.

jackice
Calcite | Level 5
Thanks! work like a charm to reorder the char on taxis but if I code it as below it doesn’t pull out the box plot anymore, it does a plot with an empty plan white square …

proc sgplot data=weight;
VBOX weightgain /category=box group=orientation;
xaxis values=('West' 'East' 'South' 'North' );
run;

getting closer but not quite yet???

ballardw
Super User

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.

jackice
Calcite | Level 5
I have attached a csv last week in this forum have you seen it?

sas-innovate-white.png

Our biggest data and AI event of the year.

Don’t miss the livestream kicking off May 7. It’s free. It’s easy. And it’s the best seat in the house.

Join us virtually with our complimentary SAS Innovate Digital Pass. Watch live or on-demand in multiple languages, with translations available to help you get the most out of every session.

 

Register now!

What is Bayesian Analysis?

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.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 4 replies
  • 1488 views
  • 0 likes
  • 2 in conversation