Quiz title : Referencing Files and Setting Options
Question 1 of 10



If you submit the following program, how does the output look?

options pagesize=55 nonumber;

proc tabulate data=clinic.admit;
    class actlevel;
    var age height weight;
    table actlevel,(age height weight)*mean;
run;

options linesize=80;

proc means data=clinic.heart min max maxdec=1;
    
var arterial heart cardiac urinary;
    class survive sex;
run;