BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
hellind
Quartz | Level 8

proc tabulate data=CA_NON_REFER  ORDER=FREQ;

class application_month CHECKLIST_FAIL;

table CHECKLIST_FAIL * (N COLPCTN) , application_month  ;

run;

Hi,

This is a cross tabulation simplified version of my code; of the number of application coming in each month, what is the top checklists that fail.

Application Month on the Y-axis, Checklist on the X-axis.

I use ORDER=FREQ to sort by frequency, and it is working on the y-axis checklists. But I don't want the x-axis application month to be sorted by frequency.

Besides workarounds, is there a build-in function in proc-tabulate for sorting frequency only for rows?


proctabulate_orderfreq.png
1 ACCEPTED SOLUTION

Accepted Solutions
data_null__
Jade | Level 19

Remove the ORDER= option from the PROC statement and move it to the CLASS statement to which it applies.

proc tabulate data=sashelp.class;

   class sex;

   class age / order=freq;

   tables age,sex;

   run;

View solution in original post

3 REPLIES 3
Ksharp
Super User

Could you make a format then using this format to customize the order.

class ../preloadfmt order=formate/data?

Ksharp

data_null__
Jade | Level 19

Remove the ORDER= option from the PROC statement and move it to the CLASS statement to which it applies.

proc tabulate data=sashelp.class;

   class sex;

   class age / order=freq;

   tables age,sex;

   run;

hellind
Quartz | Level 8

Thank you both for helping.

proc tabulate data=CA_NON_REFER ;
class application_month;

class CHECKLIST_FAIL /ORDER=FREQ;
table CHECKLIST_FAIL * (N COLPCTN) , application_month  ;
run;

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
  • 3 replies
  • 8917 views
  • 3 likes
  • 3 in conversation