Question 23: Following output can be generated using which of the following procedure
- proc means data=course2017 ;
class course_name;
run;
- proc summary data=course2017 print ;
class course_name;
run;
- proc means data=course2017 noprint ;
class course_name;
run;
- proc summary data=course2017 noprint;
class course_name;
run;
- A,B
- Get all Questions and Answer from here
- You need to have paid subscription to access all questions
- Thanks for considering SAS Certification Material
Correct Answer : 1 Exp : You can use either summary or means procedure to generate descriptive statistics. Only difference is that in summary procedure
you have to use print option to generate the output. Other two options are not correct.
You can access to full explanation to question and answer from this page.