Could you please answers for this.
1.Code the tables statement for a single-level (most common)
frequency.
2.Code the tables statement to produce a multi-level
frequency.
Answer Posted / sreenivas
single level
proc ferq data=datasetname;
table var1;
run;
multilevel
proc ferq data=datasetname;
table var1*var2;
run;
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
What is the function of Stop statement in a SAS Program?
explain what is factor analysis? : Sas-administrator
How do you control the number of observations and/or variables read or written?
What is the difference between class statement and by statement in proc means?
What is substr function?
Mention how to limit decimal places for the variable using proc means?
What are the differences between proc means and proc summary?
Approximately what date is represented by the SAS date value of 730?
how will you location sas platform applications available from web browser? : Sas-bi
Hi, If anyone has base SAS certification dumps, please share.
Explain bmdp procedure?
What is slibref?
Can you execute macro within another macro? If so, how would sas know where the current macro ended and the new one began? : sas-macro
What is the function of output statement in a SAS Program?
Can you execute macro within another macro? : sas-macro