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-2024.png

Don't miss out on SAS Innovate - Register now for the FREE Livestream!

Can't make it to Vegas? No problem! Watch our general sessions LIVE or on-demand starting April 17th. Hear from SAS execs, best-selling author Adam Grant, Hot Ones host Sean Evans, top tech journalist Kara Swisher, AI expert Cassie Kozyrkov, and the mind-blowing dance crew iLuminate! Plus, get access to over 20 breakout sessions.

 

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.

Click image to register for webinarClick image to register for webinar

Classroom Training Available!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

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