SAS_Institute
A00-281 · Question #27
The data set CM has eight variables including CMTRT and is sorted by STUDYID USUBJID CMSEQ. DATA_BB is created by selecting records from CM where the character string "BLOCKER" is included in CMTRT…
The correct answer is B. proc sort data=CM (keep=usubjid cmstdtc cmtrt) out=data_bb. See the full explanation below for the reasoning.
Question
The data set CM has eight variables including CMTRT and is sorted by STUDYID USUBJID CMSEQ. DATA_BB is created by selecting records from CM where the character string "BLOCKER" is included in CMTRT. Which program was used to produce WORK.DATA_BB?
Exhibit
Options
- Aproc sort data=cm out=data_bb (keep=usubjid cmstdtc cmtrt);
- Bproc sort data=CM (keep=usubjid cmstdtc cmtrt) out=data_bb;
- Cdata data_bb;
- Ddata data_bb;
How the community answered
(44 responses)- A9% (4)
- B84% (37)
- C5% (2)
- D2% (1)
Community Discussion
No community discussion yet for this question.
