A00-282試験無料問題集「SASInstitute Clinical Trials Programming Using SAS 9.4 認定」
In a study, inclusion criteria required patients be between 18 and 65. Patients will be analyzed in 2 age groups: group one is subjects who are under 36 years of age and group two is subjects who are 36 years of age or older.
Which statements properly assign age group, and writes an error message to the log for any patient with an out of range age value?
Which statements properly assign age group, and writes an error message to the log for any patient with an out of range age value?
正解:C
解答を投票する
A statistical analysis plan asks you to create a table with the following counts of adverse events:
- the number adverse events in each system organ class (AESOC)
- within each level of system organ class, the number of adverse events with each preferred term (AEPT).
Which code produces the counts requested?
- the number adverse events in each system organ class (AESOC)
- within each level of system organ class, the number of adverse events with each preferred term (AEPT).
Which code produces the counts requested?
正解:D
解答を投票する
The first six (6) records from the LABS data set are shown below:

The following SAS program is written to reshape this data set and place it in a new data set named LBTR.
proc transpose data=labs out=lbtr(rename = (col1 = value));
by subjid sampldat;
var Calcium Glucose Hemoglobin;
run;
Which of the following DATA steps produces a data set that is equivalent to the LBTR data set created by the PROC TRANSPOSE step above?

The following SAS program is written to reshape this data set and place it in a new data set named LBTR.
proc transpose data=labs out=lbtr(rename = (col1 = value));
by subjid sampldat;
var Calcium Glucose Hemoglobin;
run;
Which of the following DATA steps produces a data set that is equivalent to the LBTR data set created by the PROC TRANSPOSE step above?
正解:A
解答を投票する