Is there a way to show a single column list of values as a column rather than a row with proc tabulate? E.g.
Column name
A 5
B 15
C 30
All 50
Instead of Column name A B C All
5 15 30 50
Found the answer. My question was rather bad.
table (application_type = ' ' all), N = ' ';
Not sure I follow. Can you show a more detailed example?
Found the answer. My question was rather bad.
table (application_type = ' ' all), N = ' ';
Maybe I didn't understand your intention, but wouldn't proc transpose be able to do this, if you saved your tabulate result to a dataset?
I am guessing here but the only way would be to put the variable into a ROW level expression.
Apparently you currently have some something like:
table var all;
You might try:
table var all ,
n
;
Exlicitly making the statistic a separate column and the varaible as a row.
April 27 – 30 | Gaylord Texan | Grapevine, Texas
Walk in ready to learn. Walk out ready to deliver. This is the data and AI conference you can't afford to miss.
Register now and save with the early bird rate—just $795!
Learn how use the CAT functions in SAS to join values from multiple variables into a single value.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.