mycsg.in
SAS
SASnR
Clinical Programming
CRFs
SDTM
ADaM
TFL
Tasks
Macros
QnA
Certification
Resources
Disclaimer
Contact Us
Training
Sign Up
Login
New or returning user — sign in with Google for instant login, no password needed.
Sign in with Google
Maybe later
Quiz title : Set - 001 - Part 02
Question 1 of 10
The following SAS program is submitted:;
You want to store all calculated means and standard deviations in one SAS data set.
Which statement must be added to the program?
output mean std;
ods output mean=m1 m2 std=s1 s2;
output out=WORK.RESULTS mean=m1 m2 std=s1 s2;
ods output out=WORK.RESULTS mean=m1 m2 std=s1 s2;