SAS_Institute
A00-201 · Question #1
Which one of the following is needed to display the standard deviation with only two decimal places? proc means data = sasuser.houses std mean max; var sqfeet; run;
The correct answer is A. Add the option MAXDEC = 2 to the MEANS procedure statement. See the full explanation below for the reasoning.
Question
Which one of the following is needed to display the standard deviation with only two decimal places?
proc means data = sasuser.houses std mean max;
var sqfeet;
run;
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
(28 responses)- A86% (24)
- B4% (1)
- C4% (1)
- D7% (2)
Community Discussion
No community discussion yet for this question.