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 : Combining SAS Data Sets
Question 1 of 10
Which program will combine Brothers.One and Brothers.Two to produce Brothers.Three?
data
brothers.three;
set
brothers.one;
set
brothers.two;
run
;
data
brothers.three;
set
brothers.one brothers.two;
run
;
data
brothers.three;
set
brothers.one brothers.two;
by
varx;
run
;
data
brothers.three;
merge
brothers.one brothers.two;
by
varx;
run
;