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 : Reading SAS Data Sets
Question 1 of 10
If you submit the following program, which variables appear in the new data set?
data
work.cardiac(
drop
=age group);
set
clinic.fitness(
keep
=age weight group);
if
group=
2
and
age>
40
;
run
;
none
weight
Age, Group
Age, Weight, Group