If i doest required Cumilative frequency in my table,
generated by using PROC FREQ what i had to do?

Answers were Sorted based on User's Feedback



If i doest required Cumilative frequency in my table, generated by using PROC FREQ what i had to d..

Answer / sreekanth rao

Hi,

to your question i think the following answer gives a line
of sight
i think to donot print the cumilative freq in proc freq use
the option nocum in proc freq here is the samall ex
illustrates

proc freq data=mydata order=freq ;tables county*race / list
nocum;

if anybody agree/disagree please respond the answer.

Thanks

Is This Answer Correct ?    17 Yes 0 No

If i doest required Cumilative frequency in my table, generated by using PROC FREQ what i had to d..

Answer / vemula

yes i agree with srikanth.

with nocum options proc freq we suppress cumulative
frequency in table.

Is This Answer Correct ?    4 Yes 0 No

If i doest required Cumilative frequency in my table, generated by using PROC FREQ what i had to d..

Answer / sreekanth rao

hi cahndu .

could you list the sample code how it can be done.

really it will be helpful to me.

Thanks

Is This Answer Correct ?    1 Yes 0 No

If i doest required Cumilative frequency in my table, generated by using PROC FREQ what i had to d..

Answer / kumar.ts

hi cahndu .

could you list the sample code how it can be done.

really it will be helpful to me...............

Is This Answer Correct ?    1 Yes 0 No

If i doest required Cumilative frequency in my table, generated by using PROC FREQ what i had to d..

Answer / 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

If i doest required Cumilative frequency in my table, generated by using PROC FREQ what i had to d..

Answer / kts

MR.Kumaraswamy Madur ...
I think above code is not working, can u check and update
plz..........

Is This Answer Correct ?    0 Yes 0 No

If i doest required Cumilative frequency in my table, generated by using PROC FREQ what i had to d..

Answer / naveen

proc freq data=xxx;
tables name/out=hosp (drop=percent);
run;

Is This Answer Correct ?    0 Yes 0 No

If i doest required Cumilative frequency in my table, generated by using PROC FREQ what i had to d..

Answer / chandu

Hi this is chandu once again......

Y cannt by using ODS, r OUTPUT OUT Statement cannt we
remove.....?????

This is very easiest way na....

Is This Answer Correct ?    0 Yes 2 No

Post New Answer

More SAS Interview Questions

Mention some common errors that are usually committed in sas programming.

0 Answers  


What is the order of evaluation of the following operators + - * / ** () ???

2 Answers  


how are numeric and character missing values represented internally? : Sas programming

0 Answers  


What is your favorite all time computer book? Why?

0 Answers   Oracle,


data jagan1.s; input bp$; cards; 100/90 120/89 112/87 run; in the above code how to convert character data values to numeric data values?

3 Answers  






What do the PUT and INPUT functions do?

0 Answers  


What is maximum storage capability of SAS?

0 Answers  


hi i date is 05sep2005; i want the oupput like 05sep2005:00:00:00 ; how it wil come?

6 Answers   Accenture,


How to merge the data using merge statement and proc format? Is the result is same ?

2 Answers  


Give some examples where proc report’s defaults are same as proc print’s defaults?

0 Answers  


How does proc sql work?

0 Answers  


How would you create a data set with 1 observation and 30 variables from a data set with 30 observations and 1 variable?

1 Answers   Quintiles,


Categories