- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
proc freq data=have order=freq ;
tables var1/list missing out=var1_freq;
run;
The proc freq above outputs by descending order of frequency of var1.
I need the opposite, which is by ascending order.
And the output only gives the frequency and percentage. How can I get the cumulative freq and cumulative percentage as well? These two should vary depending on how you order the var1.
Accepted Solutions
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
Editor's Note: The documentation for PROC FREQ defines the ORDER=FREQ option as the descending frequency count. Unfortunately, there is not an option to make this ascending. Other procedures, such as PROC REPORT, define ORDER=FREQ as the ascending frequency count. However, given that the cumulative statistics are also desired, the PROC FREQ and DATA Step solution provided by @ballardw is best for this case.
Example input data and desired output will go a long way toward reducing suggestions that do not answer non-specified requirements. Your first post is change the order. And suggestions follow. After that you request that the cumulative totals be reordered, not in the initial post.
And when you start getting into non-standard behaviors then you get to do a little more work. Not much. Please see:
proc freq data=sashelp.class noprint; tables age / out=agefreq; run; proc sort data=agefreq; by count; run; data want; set agefreq;
cumcount + count; cumpercent + percent; run;
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
proc freq data=have order=freq ;
tables var1/OUTCUM list missing out=var1_freq;
run;
to sort the data by ascending frequency, use proc sort
proc sort data=var1_freq;
by count;
run;
Jag
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
Jag
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
Editor's Note: The documentation for PROC FREQ defines the ORDER=FREQ option as the descending frequency count. Unfortunately, there is not an option to make this ascending. Other procedures, such as PROC REPORT, define ORDER=FREQ as the ascending frequency count. However, given that the cumulative statistics are also desired, the PROC FREQ and DATA Step solution provided by @ballardw is best for this case.
Example input data and desired output will go a long way toward reducing suggestions that do not answer non-specified requirements. Your first post is change the order. And suggestions follow. After that you request that the cumulative totals be reordered, not in the initial post.
And when you start getting into non-standard behaviors then you get to do a little more work. Not much. Please see:
proc freq data=sashelp.class noprint; tables age / out=agefreq; run; proc sort data=agefreq; by count; run; data want; set agefreq;
cumcount + count; cumpercent + percent; run;
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
Otherwise I'm quite surprised that PROC FREQ can't have an option for that?
Furthermore, it's more common to perform cumulative frequency in ascending order as oppose to descending order. So I would expect that PROC Freq has a much simpler code for this.
Nothing like this for example?
proc freq data=sashelp.class order= DESCENDING freq ;
tables age/OUTCUM list missing out=agefreq2;
run;