SAS Base 认证考试— 70 题 (11-20) Q 11 Given the existing SAS program: proc format; value agegrp low-12 ='Pre-Teen' 13-high = 'Teen'; run; proc means data=SASHELP
CLASS; var Height; class Sex Age; format Age agegrp
; run;Which statement in the proc means step needs to be modified or addedto generate the following results: Analysis Variable : Height N Sex Age Obs Minimum Maximum Mean ------------------------------------------------------------------ F Pre-Teen 3 51
8 Teen 6 56
0 M Pre-Teen 4 57
7 Teen 6 62
8 -------------------------------------------------------------------- A
var Height / nobs min max mean maxdec=1;B
proc means data=SASHELP
CLASS maxdec=1 ;C
proc means data=SASHELP
CLASS min max mean maxdec=1;D
output nobs min max