By default Proc Means outputs N, MIN, MEAN, MAX and STD in the output dataset. How do I add, NMISS, P1, P5 etc to this list?
Thanks!
Put the statistics on the output statement, actually you'll want to add the defaults as well.
output out=dataset name nmiss= p1= p5= /autoname ;
The autoname is so you don't have to think of output variable names for each variable/ statistic
if you want certain statistics only for some variables then request the statistic as nmiss(var1 var2) =.
SAS Innovate 2025 is scheduled for May 6-9 in Orlando, FL. Sign up to be first to learn about the agenda and registration!
Save the date!
ANOVA, or Analysis Of Variance, is used to compare the averages or means of two or more populations to better understand how they differ. Watch this tutorial for more.
Find more tutorials on the SAS Users YouTube channel.