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 that sas contain?
What is program data vector (pdv)?
Explain the special input delimiters used in sas programming.
how could you generate test data with no input data? : Sas programming
explain the difference between proc means and proc summary?
what techniques and/or procs do you use for tables? : Sas programming
how does sas handle missing values in assignment statements? : Sas programming
How to limit decimal places for variable using proc means?
What are the different versions of sas that you have used until now? : sas-grid-administration
How would you include common or reuse to be processed along with your statements?
What is substr function?
What are the statements that are executed only?
how to debug and test the sas program? : Sas-administrator
What is the use of the %include statement?
how will you locate the sas platform applications? : Sas-bi