<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Proc Means &amp; Proc Summary in SAS Procedures</title>
    <link>https://communities.sas.com/t5/SAS-Procedures/Proc-Means-Proc-Summary/m-p/75036#M21756</link>
    <description>Some more differences&lt;BR /&gt;
- 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. &lt;BR /&gt;
- If you print the data created by PROC SUMMARY, you'll get _TYPE_ column along with the other descriptive statistics. &lt;BR /&gt;
- In PROC MEANS, number of records is N whereas it is denoted by _FREQ_ in PROC SUMMARY&lt;BR /&gt;
&lt;BR /&gt;
This is a very common interview question here in India &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;</description>
    <pubDate>Mon, 23 Feb 2009 10:23:09 GMT</pubDate>
    <dc:creator>datalligence</dc:creator>
    <dc:date>2009-02-23T10:23:09Z</dc:date>
    <item>
      <title>Proc Means &amp; Proc Summary</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Proc-Means-Proc-Summary/m-p/75033#M21753</link>
      <description>Can anyone help me out in getting the differences of Proc Means &amp;amp; Proc Summary other than the output difference?</description>
      <pubDate>Sat, 21 Feb 2009 06:06:00 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Proc-Means-Proc-Summary/m-p/75033#M21753</guid>
      <dc:creator>Siddhartha</dc:creator>
      <dc:date>2009-02-21T06:06:00Z</dc:date>
    </item>
    <item>
      <title>Re: Proc Means &amp; Proc Summary</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Proc-Means-Proc-Summary/m-p/75034#M21754</link>
      <description>Hi:&lt;BR /&gt;
  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.&lt;BR /&gt;
         &lt;BR /&gt;
  If you are interested in summarizing data, these papers may be of interest:&lt;BR /&gt;
&lt;A href="http://www2.sas.com/proceedings/sugi28/165-28.pdf" target="_blank"&gt;http://www2.sas.com/proceedings/sugi28/165-28.pdf&lt;/A&gt;&lt;BR /&gt;
&lt;A href="http://www2.sas.com/proceedings/forum2007/236-2007.pdf" target="_blank"&gt;http://www2.sas.com/proceedings/forum2007/236-2007.pdf&lt;/A&gt;&lt;BR /&gt;
 &lt;BR /&gt;
cynthia</description>
      <pubDate>Sat, 21 Feb 2009 15:00:51 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Proc-Means-Proc-Summary/m-p/75034#M21754</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2009-02-21T15:00:51Z</dc:date>
    </item>
    <item>
      <title>Re: Proc Means &amp; Proc Summary</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Proc-Means-Proc-Summary/m-p/75035#M21755</link>
      <description>Hi Siddartha....&lt;BR /&gt;
&lt;BR /&gt;
Proc Means and Proc Summary both are similar except two cases&lt;BR /&gt;
They are.....&lt;BR /&gt;
&lt;BR /&gt;
for Proc Means...... default proc print and var statement.&lt;BR /&gt;
for Proc Summary........proc print and var statement required.&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
Thanks...</description>
      <pubDate>Mon, 23 Feb 2009 07:07:03 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Proc-Means-Proc-Summary/m-p/75035#M21755</guid>
      <dc:creator>venkatesh</dc:creator>
      <dc:date>2009-02-23T07:07:03Z</dc:date>
    </item>
    <item>
      <title>Re: Proc Means &amp; Proc Summary</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Proc-Means-Proc-Summary/m-p/75036#M21756</link>
      <description>Some more differences&lt;BR /&gt;
- 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. &lt;BR /&gt;
- If you print the data created by PROC SUMMARY, you'll get _TYPE_ column along with the other descriptive statistics. &lt;BR /&gt;
- In PROC MEANS, number of records is N whereas it is denoted by _FREQ_ in PROC SUMMARY&lt;BR /&gt;
&lt;BR /&gt;
This is a very common interview question here in India &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;</description>
      <pubDate>Mon, 23 Feb 2009 10:23:09 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Proc-Means-Proc-Summary/m-p/75036#M21756</guid>
      <dc:creator>datalligence</dc:creator>
      <dc:date>2009-02-23T10:23:09Z</dc:date>
    </item>
    <item>
      <title>Re: Proc Means &amp; Proc Summary</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Proc-Means-Proc-Summary/m-p/75037#M21757</link>
      <description>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).</description>
      <pubDate>Thu, 04 Nov 2010 05:06:05 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Proc-Means-Proc-Summary/m-p/75037#M21757</guid>
      <dc:creator>mnew</dc:creator>
      <dc:date>2010-11-04T05:06:05Z</dc:date>
    </item>
    <item>
      <title>Re: Proc Means &amp; Proc Summary</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Proc-Means-Proc-Summary/m-p/75038#M21758</link>
      <description>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.</description>
      <pubDate>Fri, 05 Nov 2010 21:50:00 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Proc-Means-Proc-Summary/m-p/75038#M21758</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2010-11-05T21:50:00Z</dc:date>
    </item>
    <item>
      <title>Re: Proc Means &amp; Proc Summary</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Proc-Means-Proc-Summary/m-p/75039#M21759</link>
      <description>I was also wondering about your question and I received the reply as below,&lt;BR /&gt;
&lt;BR /&gt;
PROC SUMMARY and PROC MEANS are the same underneath, but MEANS defaults to print output and SUMMARY does not.</description>
      <pubDate>Mon, 13 Dec 2010 06:58:22 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Proc-Means-Proc-Summary/m-p/75039#M21759</guid>
      <dc:creator>deleted_user</dc:creator>
      <dc:date>2010-12-13T06:58:22Z</dc:date>
    </item>
  </channel>
</rss>

