- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
It is possible to sort all classes descending:
PROC TABULATE DATA=AnalysisData;
CLASS Y X /descending;
TABLE Y, X * N;
RUN;
Is it also possible to sort one class descending and the other ascending?
Accepted Solutions
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
@csetzkorn wrote:
It is possible to sort all classes descending:
PROC TABULATE DATA=AnalysisData; CLASS Y X /descending; TABLE Y, X * N; RUN;
Is it also possible to sort one class descending and the other ascending?
Yes but you would use multiple class statements.
Class y /descending;
class x /ascending;
And other orders could be used with the ORDER= option. Again a separate class statement would be used for different values of the option.
class z/ order=freq;
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
cynthia
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
You only need to use 2 CLASS statements, as @ballardw shows.
cynthia
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
@csetzkorn wrote:
It is possible to sort all classes descending:
PROC TABULATE DATA=AnalysisData; CLASS Y X /descending; TABLE Y, X * N; RUN;
Is it also possible to sort one class descending and the other ascending?
Yes but you would use multiple class statements.
Class y /descending;
class x /ascending;
And other orders could be used with the ORDER= option. Again a separate class statement would be used for different values of the option.
class z/ order=freq;
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
@csetzkorn wrote:
Amazing did not know you can have separate class statements!
The you likely will find that you can also have multiple table, classlev and var statements helpful as well.