BookmarkSubscribeRSS Feed
pradeepad
Calcite | Level 5

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!

1 REPLY 1
ballardw
Super User

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: Call for Content

Are you ready for the spotlight? We're accepting content ideas for SAS Innovate 2025 to be held May 6-9 in Orlando, FL. The call is open until September 25. Read more here about why you should contribute and what is in it for you!

Submit your idea!

What is ANOVA?

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.

Discussion stats
  • 1 reply
  • 1426 views
  • 0 likes
  • 2 in conversation