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

how to assign a macro value to a variable?

8 Answers   CitiGroup,


what is scheduling and how will u implement it. In scheduling 5 jobs r running if there is an error occured at 3rd job and how will u check and waht necessary steps will u take not to repeat the same mistake

0 Answers   Blue Star,


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

0 Answers  


how to shift the rows to cols? eg: i have like field1 field2 field3 10 20 20 this should be displayed as field1 10 field2 20 field3 30 (without the obs col) how do this?can i use transpose or tell me suitable way to do this?

3 Answers   CMC,


what is SAS ACCESS AND SAS CONNECT ? Give an example and data statements used.

1 Answers   TCS,






Tell me more about the parameters in macro? : sas-macro

0 Answers  


What will calendar procedure do?

0 Answers  


If a variable contains letters or special characters, can it be numeric data type?

0 Answers  


How would you generate 1000 observations from a normal distribution with a mean of 50 and standard deviation of 20. How would you use PROC CHART to look at the distribution? Describe the shape of the distribution.

1 Answers  


What are the criticality that you have faced during your project in SAS?

2 Answers  


which domain is better in sas? clinical trails or banking

3 Answers  


what is the primary data source for the wrs? : Sas-bi

0 Answers  


Categories