statschoice.com
SAS
SASnR
Clinical Programming
CRFs
SDTM
ADaM
TFL
Tasks
Macros
Clinical Interview
CRFs
SDTM
ADaM
TFL
Tasks
Macros
QnA
Certification
Resources
Disclaimer
Contact Us
Sign Up
Login
This website uses cookies to personalize content and analyse traffic in order to offer you a better experience. By clicking "OK", or continuing using our site, you consent to the use of cookies.
OK
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
;