SAS_Institute
A00-280 · Question #7
This question will ask you to provide a line of missing code. The following SAS program is submitted: proc report data=demo; column site subject trt age gender race ; <insert code here> define subject
Sign in or unlock A00-280 to reveal the answer and full explanation for question #7. The question stem and answer options stay visible for context.
Manage SAS Content and Data
Question
This question will ask you to provide a line of missing code. The following SAS program is submitted:
proc report data=demo;
column site subject trt age gender race ;
<insert code here>
define subject / order 'Subject' ;
define age / format=3. 'Age' ;
define gender / 'Gender' ;
define race / 'Race' ;
run;
The report output should:
- be sorted by variables SITE and then SUBJECT
- not display the SITE variable in the output
Unlock A00-280 to see the answer
You've previewed enough free A00-280 questions. Unlock A00-280 for full answers, explanations, the timed quiz mode, progress tracking, and the master PDF. Question stem and options stay visible so you can still see what's on the exam.
Topics
#PROC REPORT#DEFINE statement#ORDER NOPRINT#column ordering