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
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 |
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 |
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 |
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 |
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 |
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 |
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 |
What is the basic syntax style in SAS?
WHAT DIFFERRENCE DID YOU FIND AMONG VERSION 6 8 AND 9 OF SAS.
Differentiate between format and informat? : sas-grid-administration
what is lifetest
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
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?
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?
how to write code for left outer join in SAs using datastep?
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.
What is the use of function Proc summary?
What is run-group processing?