최신SASInstitute Clinical Trials Programming Using SAS 9.4 - A00-282무료샘플문제
Which CDISC filename contains these items?
- Variable attributes
- Controlled terminology
- Computational methods
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?
Given the data set below, which SAS program correctly counts the of number of unique subjects for each combination of system organ class and treatment?

Which statement outputs all possible missing values of LBORRES?
The PROC COMPARE code below is intended to validate the results from a PROC FREQ.
Both the ProdFreqData and ValFreqData data sets contain 10 observations of the variable Frequency.
No other variables are present in these data sets.
proc compare base = ProdFreqData
comp = ValFreqData
out = FreqDiffs
outbase outcomp outdif outnoeq
method = exact
noprint;
run;
After successfully executing this PROC COMPARE step, what is a possible reason for the FreqDiffs file to contain 30 records?
The following SAS program is submitted:

What is the value of the variable day when the data step completes?
Given the following partial output data set:

Which code was used to create AGECAT?
When writing a validation program using independent programming, which two actions conform to good programming practices?
(Choose two.)
Which CDISC standard is concerned with the development of simplified case report forms?
The following SAS program is submitted:
proc univariate date=work.STUDY; by VISIT; class REGION TREAT; var HBA1C GLUCOS; run; You want to store all calculated means and standard deviations in one SAS data set.
Which statement must be added to the program?