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) =.
It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.
Latest Updates
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.