BookmarkSubscribeRSS Feed
rajeshalwayswel
Pyrite | Level 9

I have some knowledge on proc means and summary.

 

proc means : 1) The print option is set by default which displays output . 2) Omitting the var statement analyses all the numeric variable. Proc Summary : 1) No print option is set by default,which displays no output. 2) Omitting the variable statement produces a simple count of observation.

 

Can say me some more difference between two of the procedure other than two....

3 REPLIES 3
lethcons
Obsidian | Level 7

I think that's about it. Many years ago they did have slightly different functionality, but this converged with later versions of SAS, and I think it's just the default behaviour that is now different. Quite probably there is only one set of underlying code.

Reeza
Super User

I believe Univariate, Summary and Means all use the same engine under the 'hood'. 

They have slight differences but the core functionality is the same. 

ballardw
Super User

When I started with SAS 5.1 Proc means only sent output to what is now the Listing destination. If you wanted similar output into a data set Proc Summary was required.

 

Default output datasets often have different structures for what appears to be identical code. Please see:

Proc means data=sashelp.class;
   class sex;
   output out=work.meansoutput ;
run;

Proc summary data=sashelp.class;
   class sex;
   output out=work.summaryoutput ;
run;

I actually continue to use Proc Means and Summary separately so when I look at my code I can quickly tell which was to create data sets and which was to display summaries.

 

hackathon24-white-horiz.png

The 2025 SAS Hackathon has begun!

It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.

Latest Updates

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
  • 3 replies
  • 11911 views
  • 4 likes
  • 4 in conversation