Deal of The Day! Hurry Up, Grab the Special Discount - Save 25% - Ends In 00:00:00 Coupon code: SAVE25
Welcome to Pass4Success

- Free Preparation Discussions

SAS A00-215 Exam - Topic 9 Question 59 Discussion

Which PROC MEANS step generates the report below?
A) proc means data=class mean std; var Height Weight; run;
B) proc means data=class / mean std; mean (Height, Weight) ; std (Height, Weight) ; run;
C) proc means data=class; var mean std; run;
D) proc means data=class; options mean std; keep Height Weight; run;

SAS A00-215 Exam - Topic 9 Question 59 Discussion

Actual exam question for SAS's A00-215 exam
Question #: 59
Topic #: 9
[All A00-215 Questions]

Which PROC MEANS step generates the report below?

Show Suggested Answer Hide Answer
Suggested Answer: A

The correct syntax for generating the mean and standard deviation for specified variables using PROC MEANS is shown in option A. The PROC MEANS statement specifies the dataset to analyze (data=class) and includes the options (mean std) directly in the PROC statement. The VAR statement then lists the variables for which the statistics should be calculated (Height and Weight). The other options listed in B, C, and D are not correct syntax for PROC MEANS.


Contribute your Thoughts:

0/2000 characters
Nu
1 month ago
I think option A looks familiar, but I'm not sure if it includes the correct syntax for calculating mean and std.
upvoted 0 times
...

Save Cancel