SAS_Institute
A00-211 · Question #62
The following SAS program is submitted: proc means data = sasuser.houses std mean max; var sqfeet; run; Which one of the following is needed to display the standard deviation with only two decimal…
The correct answer is A. Add the option MAXDEC = 2 to the MEANS procedure statement. See the full explanation below for the reasoning.
Question
The following SAS program is submitted:
proc means data = sasuser.houses std mean max; var sqfeet; run; Which one of the following is needed to display the standard deviation with only two decimal places?
Options
- AAdd the option MAXDEC = 2 to the MEANS procedure statement.
- BAdd the statement MAXDEC = 7.2; in the MEANS procedure step.
- CAdd the statement FORMAT STD 7.2; in the MEANS procedure step.
- DAdd the option FORMAT = 7.2 option to the MEANS procedure statement.
How the community answered
(47 responses)- A72% (34)
- B9% (4)
- C15% (7)
- D4% (2)
Community Discussion
No community discussion yet for this question.