A00-282試験無料問題集「SASInstitute Clinical Trials Programming Using SAS 9.4 認定」

Given the SAS data set containing subject's phone numbers

What is the value of PHONE2 for subject 005?

You are working with the VS data set that contains the variable Pulse.

Which PROC SGPLOT step will produce the graph shown below?

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?

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?

Vital Signs are a component of which SDTM class?

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?

A Statistical Analysis Plan defines study day as the number of days between the visit date and the date of randomization plus one day.
The following SAS program is submitted using a macro from the project's library:

How is the STUDYDAY macro defined?

What is the primary purpose of programming validation?

How does the code shown below help to validate report output?
data check;
set datlib.medhist;
mh_len = length(trim(mhcom1));
run;
proc freq data=check;
tables mh_len;
run;

The following SAS program is submitted:
proc sort data=SASUSER.VISIT out=PSORT; by code descending date cost; run; Which statement is true regarding the submitted program?