If i doest required Cumilative frequency in my table,
generated by using PROC FREQ what i had to do?
Answer Posted / kumaraswamy maduri
Hi Chandu,
Here the code for your query using ODS
ODS TRACE ON;
ODS OUTPUT Freq.Table1.OneWayFreqs=A(DROP=CumFrequency
CumPercent);
proc freq data=sasuser.admit;
tables ACTLEVEL;
run;
ODS TRACE OFF;
But it creates a dataset and you require to print it, which
is bit complex than the normal NOCUMM.
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
What are the data types does SAS contain?
How can I remove header from output data set?
what does the run statement do? : Sas programming
What do the sas log messages “numeric values have been converted to character” mean? What are the implications?
What are the functions which are used for character handling functions?
What is the use of function Proc summary?
How to read an input file in sas?
describe the interaction table in sas di? : Sas-di
what is enterprise guide? What is the use of it? : Sas programming
What will calendar procedure do?
what is metadata? : Sas-bi
what is the basic structure sas administrator? : Sas-administrator
What would you change about your job?
Of all your work, where have you been the most successful?
what is study design in while working with SAS? what are screening variables in SAS?