- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
Posted 07-17-2012 10:16 AM
(5848 views)
Hi,
I`m trying to create a output dataset using proc freq. When i create the output dataset it has percentage but not the cumulative percentage.
How can i create an output dataset with cumulative percentage using proc freq.
Your help is much appreciated. Thanks.
Saravanan
2 REPLIES 2
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
Something like this:
proc freq data=sashelp.class;
tables age / out=want outcum;
run;
proc print;run;
Haikuo
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
Thank you very much. That worked like a charm!
Saravanan