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


Please Help Members By Posting Answers For Below Questions

What are the limitations for memory allocation for SAS variables

925


which date functions advances a date time or date/time value by a given interval? : Sas programming

533


what do the pad and dim functions do? : Sas programming

563


How would you identify a macro variable?

646


What are the differences between proc means and proc summary?

598






Explain the use of proc gplot? : sas-grid-administration

549


Briefly explain input and put function?

621


How does SAS handle missing values in: assignment statements, functions, a merge, an update, sort order, formats, PROCs?

1094


how does sas handle missing values in formats? : Sas programming

576


what is the effect of the options statement errors=1? : Sas programming

588


Describe the ways in which you can create macro variables? : sas-macro

574


What is the basic structure of a sas program?

594


State the difference between INFORMAT and FORMAT ?

591


Mention sas system options to debug sas macros.

659


Explain the use of proc print and proc contents?

554