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 : Creating List Reports
Question 1 of 10
Which PROC PRINT step below creates the following output?
proc
print
data
=flights.laguardia
noobs
;
var
on changed flight;
where
on>=
160
;
run
;
proc
print
data
=flights.laguardia;
var
date on changed flight;
where
changed>
3
;
run
;
proc
print
data
=flights.laguardia
label
;
id
date;
var
boarded transferred flight;
label
boarded=
'On'
transferred=
'Changed'
;
where
flight=
'219'
;
run
;
proc
print
flights.laguardia
noobs
;
id
date;
var
date on changed flight;
where
flight=
'219'
;
run
;