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 is the basic syntax style in SAS?

0 Answers  


WHAT DIFFERRENCE DID YOU FIND AMONG VERSION 6 8 AND 9 OF SAS.

4 Answers   Genzyme,


Differentiate between format and informat? : sas-grid-administration

0 Answers  


what is lifetest

1 Answers   Cognizant,


Below is the table. Required to be output should be the highest number of each student_id. Example. Student_id Subject Marks 1 Hindi 86 2 Hindi 70 3 English 80 . Calculate sum and average marks for each group of student_id Example. Student_id Subject Marks Total Marks Average 1 English 40 181 60.33333 2 English 67 196 65.33333 3 English 80 160 53.33333 PLEASE PROVIDE THE CODE OF ABOVE PROBLEMS

1 Answers   Accenture, HSBC,






i have a null dataset with 10 variables; i want to print only name of the varibales in log window and also output window.how can we do this one?

6 Answers   GSK,


my problem is to export my report to xsl.i can do that.but the problem is my report has 3 headings first heading should be printed with the merging of (1-5)cells and heading 2 should be of merge(2-4)cells?how to do this condition?

2 Answers   Dr Reddys, Oracle,


how to write code for left outer join in SAs using datastep?

8 Answers   CitiGroup,


how do you pull data from equifax?tell me the process?

0 Answers   Synchrony Financial,


Assuming {et} is randomly drawn from N(0,1) and e0 = 0, generate 200 observations of xt = et − 0.5e(t−1) and draw a line graph of xt.

0 Answers  


What is the use of function Proc summary?

0 Answers  


What is run-group processing?

0 Answers  


Categories