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 are the different operating system platforms in which we can use sas? : sas-grid-administration
what type of graphs we will create(for 2+years candidates)?
Can you explain the process of calendar?
What is the difference between nodupkey and nodup options?
Which statement does not perform automatic conversions in comparisons?
What do the SAS log messages "numeric values have been converted to character" mean?
Differences between where and if statement?
What are the default statistics that proc means produce?
How would you identify a macro variable? : sas-macro
How do you add a number to a macro variable? : sas-macro
What is connection profile? : sas-grid-administration
how can you create zero observation dataset? : Sas programming
how to remove duplicates using proc sql?
What does the trace option do?
What is the use of PROC gplot?