SAS_Institute
A00-280 · Question #27
This question will ask you to provide a missing code. Given the following DEMO data set: subject trt age gender race site 01001 A 20 MALE BLACK 01 02003 B 30 MALE HISPANIC 02 04001 B 24 FEMALE…
The correct answer is C. break after race / page. See the full explanation below for the reasoning.
Question
This question will ask you to provide a missing code. Given the following DEMO data set:
subject trt age gender race site
01001 A 20 MALE BLACK 01
02003 B 30 MALE HISPANIC 02
04001 B 24 FEMALE CAUCASIAN 04
02002 A 18 FEMALE CAUCASIAN 02
06001 B 20 MALE BLACK 06
01004 B 13 MALE CAUCASIAN 01
Which statement must be added to the following program to create a page break in the report after each RACE grouping?
proc report data=demo ;
column race subject trt age gender ;
define race / order 'Race';
define subject / 'Subject';
define trt / 'Treatment';
define age / 'Age' format=3. ;
define gender / 'Gender';
<insert code here>
run ;
Options
- Abreak page / race;
- Bbreak race / page;
- Cbreak after race / page;
- Dbreak after race;
How the community answered
(24 responses)- A4% (1)
- B13% (3)
- C79% (19)
- D4% (1)
Community Discussion
No community discussion yet for this question.