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

what are all the ways to define macro variable??

2 Answers   GSK GlaxoSmithKline,


What function CATX syntax does?

0 Answers  


You have a data set of 100 observations,how can you restrict the output so that the output has only data from row no. 10 to row no. 20

9 Answers  


what kind of variables are collected in AE dataset?

3 Answers   Accenture, Quintiles, SAS,


What is a pdv and what are its functions?

0 Answers  






Do you know the features of sas?

0 Answers  


If a variable contains only numbers, can it be a character data type?

0 Answers  


what is validvarname and varnum? why we are using this options; explain with a syntax for this options?

1 Answers   Max India,


what is sas metadata server? : Sas-di

0 Answers  


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

0 Answers  


How to convert a given date value into SAS date

9 Answers   CitiGroup, Quintiles,


What do you know about sas data set?

0 Answers  


Categories