BookmarkSubscribeRSS Feed
Siddhartha
Calcite | Level 5
Can anyone help me out in getting the differences of Proc Means & Proc Summary other than the output difference?
6 REPLIES 6
Cynthia_sas
SAS Super FREQ
Hi:
In earlier versions of SAS (SAS 5 and 6) PROC MEANS and PROC SUMMARY were separate procedures. Over time, by version 8, the code for the 2 procedures was standardized and "melded" together. There are essentially no differences except that MEANS creates output in the LISTING window or other open destinations, while SUMMARY creates an output dataset by default.

If you are interested in summarizing data, these papers may be of interest:
http://www2.sas.com/proceedings/sugi28/165-28.pdf
http://www2.sas.com/proceedings/forum2007/236-2007.pdf

cynthia
venkatesh
Calcite | Level 5
Hi Siddartha....

Proc Means and Proc Summary both are similar except two cases
They are.....

for Proc Means...... default proc print and var statement.
for Proc Summary........proc print and var statement required.


Thanks...
datalligence
Fluorite | Level 6
Some more differences
- If you don't mention the VAR statement, PROC SUMMARY produces a simple count of observations. But PROC MEANS analyzes all the numeric variables that are not listed in the other statements.
- If you print the data created by PROC SUMMARY, you'll get _TYPE_ column along with the other descriptive statistics.
- In PROC MEANS, number of records is N whereas it is denoted by _FREQ_ in PROC SUMMARY

This is a very common interview question here in India 🙂
mnew
Calcite | Level 5
Thank you for pointing out the first item. Would not have expected it just by reading SAS Help. (Did not notice the next two differences in my test runs though. Could be due to SAS version updates).
ballardw
Super User
The output can differe when using multiple CLASS variables as well. The output dataset for PROC SUMMARY will resemble the "printed" output for PROC MEANS only when the NWAY option is used. Otherwise you get all of those values for each level of _TYPE_ which is not the default behavior of MEANS.
deleted_user
Not applicable
I was also wondering about your question and I received the reply as below,

PROC SUMMARY and PROC MEANS are the same underneath, but MEANS defaults to print output and SUMMARY does not.

sas-innovate-2024.png

Join us for SAS Innovate April 16-19 at the Aria in Las Vegas. Bring the team and save big with our group pricing for a limited time only.

Pre-conference courses and tutorials are filling up fast and are always a sellout. Register today to reserve your seat.

 

Register now!

What is Bayesian Analysis?

Learn the difference between classical and Bayesian statistical approaches and see a few PROC examples to perform Bayesian analysis in this video.

Find more tutorials on the SAS Users YouTube channel.

Click image to register for webinarClick image to register for webinar

Classroom Training Available!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

Discussion stats
  • 6 replies
  • 975 views
  • 0 likes
  • 7 in conversation