BookmarkSubscribeRSS Feed
Ronein
Onyx | Level 15

Hello

I want to add also calculation of Mean and stdv,

what is the way to do it please?

proc univariate data =sashelp.cars(where=(Type='Sedan')) noprint;
var Invoice;
output out=outdata  PCTLPTS = 0 to 5 by 1 , 10 to 90 by 10, 95 to 100 by 1 PCTLPRE = P;
run;
 
1 REPLY 1
PaigeMiller
Diamond | Level 26
output out=outdata mean=mean_invoice PCTLPTS = 0 to 5 by 1 , 10 to 90 by 10, 95 to 100 by 1 PCTLPRE = P;

 

 

I have left outputting the standard deviation to you as a homework assignment. (Documentation)

--
Paige Miller
How to Concatenate Values

Learn how use the CAT functions in SAS to join values from multiple variables into a single value.

Find more tutorials on the SAS Users YouTube channel.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 1 reply
  • 741 views
  • 1 like
  • 2 in conversation