A00-282 試験問題を無料オンラインアクセス
試験コード: | A00-282 |
試験名称: | Clinical Trials Programming Using SAS 9.4 |
認定資格: | SASInstitute |
無料問題数: | 144 |
更新日: | 2025-09-04 |
This question will ask you to provide a line of missing code. The following SAS program is submitted:
Which statement is required to produce this output?
In a Statistical Analysis Plan (SAP) the following statement is written:
To test the association between the pain intensity reported by the patient and the treatment the patient has been administered, a Cochran-Mantel-Haenszel test will be performed adjusting for the country of the patient's investigational site.
The following variables and levels are used:
- Pain intensity (PAIN): "No pain", "Mild pain", "Moderate pain", "Severe pain", "Most severe pain"
- Treatment group (TREAT): "Placebo", "Drug A", "Drug B"
- Country (COUNTRY): Eight different values.
The following program is written to perform this analysis:
proc freq data=pain;
by COUNTRY;
tables PAIN * TREAT / cmh;
run;
This code does not produce the analysis requested by the SAP.
What is wrong with this code?
This question will ask you to provide a line of missing code.
Given the dataset RAWBP that is sorted by SUBJECT TEST WEEK:
Which statement must be added to the program to calculate relative change in percent (percent change) from baseline?