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.

Answers were Sorted based on User's Feedback



Could you please answers for this. 1.Code the tables statement for a single-level (most common) ..

Answer / hsong001

In proc freq:
1. one level: tables a b c;
2. multiple levels: tables a*b a*c a*b*c;

Is This Answer Correct ?    3 Yes 0 No

Could you please answers for this. 1.Code the tables statement for a single-level (most common) ..

Answer / 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

More SAS Interview Questions

Baseline definition in your study

3 Answers   Accenture, Quintiles,


Name and describe three SAS functions that you have used, if any?

4 Answers   Accenture,


How would you identify a macro variable?

0 Answers  


How we can call macros with in data step? : sas-macro

0 Answers  


how do you validate sas program?

6 Answers   Accenture,






how are numeric and character missing values represented internally? : Sas programming

0 Answers  


Difference b/n proc means and proc summary procedures?

3 Answers   Accenture,


What happens in the following code, if u type 8 instead of *? proc sql noprint; create table abc as select 8 from lib.abc; quit;

3 Answers  


How would you remove a format that has been permanently associated with a variable? ________________

5 Answers   Quintiles, TCS,


Are you familiar with special input delimiters How are they used?

3 Answers  


what is the diff. b/w proc means and proc summary?

12 Answers   CitiGroup,


how to remove the duplicates by proc sql?

2 Answers   Genpact,


Categories