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
How will you generate test data with no input data?
what is star schema? : Sas-di
What are the ways to do a “table lookup” in sas?
what is sas application server? : Sas-di
do you prefer proc report or proc tabulate? Why? : Sas programming
how to generate the test data in sas without input data? : Sas-administrator
What do the put and input function do?
Explain the purpose of substr functions in sas programming.
what are all the reports you generated in your recent project?
If you use a symput in a data step, when and where can you use the macro variable? : sas-macro
what are informats in sas? : Sas-administrator
This entry was posted in General. Bookmark the permalink. Post a comment or leave
what is transformation in sas data integration? : Sas-di
What are the functions which are used for character handling functions?
What are the limitations for memory allocation for SAS variables