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.
Good news: We've extended SAS Hackathon registration until Sept. 12, so you still have time to be part of our biggest event yet – our five-year anniversary!
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.