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


Please Help Members By Posting Answers For Below Questions

how does sas handle missing values in: assignment statements, functions, a merge, an update, sort order, formats, procs? : Sas programming

594


How does SAS handle missing values in: assignment statements, functions, a merge, an update, sort order, formats, PROCs?

1092


What are the default statistics that proc means produce?

597


What are the data types in sas?

601


How would you invoke a macro? : sas-macro

544






if you were told to create many records from one record, show how you would do this using array and with proc transpose? : Sas programming

538


What are SAS/ACCESS and SAS/CONNECT?

626


Explain data_null_?

603


Are you sensitive to code walk-throughs peer review or QC review?

2593


how to generate the test data in sas without input data? : Sas-administrator

570


what is the function of catx syntax? : Sas-administrator

643


what are sas bi dashboard components? : Sas-bi

653


do you need to know if there are any missing values? : Sas programming

542


explain the difference between proc means and proc summary?

663


What is program data vector (pdv) and what are its functions?

621