SAS_Institute
A00-280 · Question #78
The following SAS program is submitted: proc univariate data=WORK.STUDY; by VISIT; class REGION TREAT; var HBA1C GLUCOSE; run; Which statement must be added to the program?
The correct answer is C. output out=WORK.RESULTS mean=m1 m2 std=s1 s2. See the full explanation below for the reasoning.
Question
The following SAS program is submitted:
proc univariate data=WORK.STUDY;
by VISIT;
class REGION TREAT;
var HBA1C GLUCOSE;
run;
Which statement must be added to the program?
Options
- Aoutput mean std;
- Bods output mean=m1 m2 std=s1 s2;
- Coutput out=WORK.RESULTS mean=m1 m2 std=s1 s2;
- Dods output out=WORK.RESULTS mean=m1 m2 std=s1 s2;
How the community answered
(24 responses)- A8% (2)
- B4% (1)
- C83% (20)
- D4% (1)
Community Discussion
No community discussion yet for this question.