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
how many display types available in sas bi dashboard? : Sas-bi
How to create an external dataset with sas code?
Hello Friends, am new to this forum and am not good at sas progarmming. please can any one of you send me couple of sample large sample SAS Jobs which can you use 200 MB of data and other sas job upto 25GB of data. am doing a performance testing on our legacy systems and new upgraded system. I would really appreciate if you can do me this favor Thank you Priya
how does sas handle missing values in formats? : Sas programming
explain about various caches available in data integrator? : Sas-di
Mention few capabilities of sas framework.
how do you test for missing values? : Sas programming
Describe a time when you were really stuck on a problem and how you solved it?
Explain the special input delimiters used in sas programming.
Name validation tools used in SAS
What is the difference between proportion and average?
describe how to adjust the performance of data integrator? : Sas-di
what is intially documentation in sas?
How do you define proc in sas? : sas-grid-administration
What is the difference between the proc sql and data step?