A00-282試験無料問題集「SASInstitute Clinical Trials Programming Using SAS 9.4 認定」
By default, the PROC FREQ in the code below produces an output object named CrossTabFreqs and the PROC MEANS produces an output object named Summary.
<insert code here>
proc freq data = Work.AE;
table USUBJID*AEPTCD;
run;
proc means data = work.LB max;
class USUBJID;
var STUDYDY;
run;
Which code segment can be added prior to the PROC FREQ step to ensure that PROC MEANS produces its output object but PROC FREQ produces no output object?
<insert code here>
proc freq data = Work.AE;
table USUBJID*AEPTCD;
run;
proc means data = work.LB max;
class USUBJID;
var STUDYDY;
run;
Which code segment can be added prior to the PROC FREQ step to ensure that PROC MEANS produces its output object but PROC FREQ produces no output object?
正解:D
解答を投票する