- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
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
Accepted Solutions
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
Found the answer. My question was rather bad.
table (application_type = ' ' all), N = ' ';
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
Not sure I follow. Can you show a more detailed example?
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
Found the answer. My question was rather bad.
table (application_type = ' ' all), N = ' ';
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
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?
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
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.