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 |
One way of creating a new variable in Macros is by % Let....What is the other way..?
I have a dataset concat having a variable a b & c. How to rename a b to e & f?
what is the different between functions and procs that calculate the same simple descriptive statistics? : Sas programming
What is the command used to find missing values?
it will become easy if uuu provide website linkssss and list of consultanciessssss
what is data integration? : Sas-di
How will you react when, while consulting a SAS documentation manual to get an answer to a problem, someone says hey, I thought you were supposed to know all that stuff already, and not have to look it up in a book?
how does sas handle missing values in functions? : Sas programming
What would you change about your job?
how do you debug and test your sas programs? : Sas programming
Do you use PROC REPORT or PROC TABULATE? Which do you prefer? Explain.
tell me about use of arrays in sas