Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
proc means data=sample.b CV;
Var f15 f16 Avgtply NormUlti Norm2percent;
Title 'Summary of PB1 final';
output out=sample.a CV=;
Run;
proc means data=sample.b CV;
Var f15 f16 Avgtply NormUlti Norm2percent;
Title 'Summary of PB1 final';
output out=sample.a CV(f15)=CV_f15 CV(f16)=CV_f16 ...
mean(f15)=ave_f15 ...;
Run;