proc means data=sample.b CV;
Var f15 f16 Avgtply NormUlti Norm2percent;
Title 'Summary of PB1 final';
output out=sample.a CV=;
Run;
Note, if you do this, all you'll get out is the CV statistic. Never come across the CV stat though, so I can't guarantee this one.
If you want the others, you'll have to specify them, and specify names for them too...
Code:
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;
Chris
Business Analyst, Code Monkey, Data Wrangler.
SAS Guru.
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.