<?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: How to suppress the output for PROC UNIVARIATE in SAS Procedures</title>
    <link>https://communities.sas.com/t5/SAS-Procedures/How-to-suppress-the-output-for-PROC-UNIVARIATE/m-p/386726#M65828</link>
    <description>&lt;P&gt;Thanks! I'll take a look at it.&lt;/P&gt;</description>
    <pubDate>Wed, 09 Aug 2017 17:36:35 GMT</pubDate>
    <dc:creator>chloelane</dc:creator>
    <dc:date>2017-08-09T17:36:35Z</dc:date>
    <item>
      <title>How to suppress the output for PROC UNIVARIATE</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/How-to-suppress-the-output-for-PROC-UNIVARIATE/m-p/386412#M65808</link>
      <description>&lt;P&gt;I am required to run PROC MEANS and PROC UNIVARIATE but PROC UNIVARIATE already has some of the things that PROC MEANS does so how do I get rid of those for PROC UNIVARIATE? Thanks!&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;My code is right now is:&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;PROC MEANS DATA=RESULTS_ALL;&lt;BR /&gt;VAR AGE;&lt;BR /&gt;RUN;&lt;BR /&gt;PROC UNIVARIATE DATA=RESULTS_ALL;&lt;BR /&gt;VAR AGE;&lt;BR /&gt;RUN;&lt;/P&gt;</description>
      <pubDate>Tue, 08 Aug 2017 20:27:45 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/How-to-suppress-the-output-for-PROC-UNIVARIATE/m-p/386412#M65808</guid>
      <dc:creator>chloelane</dc:creator>
      <dc:date>2017-08-08T20:27:45Z</dc:date>
    </item>
    <item>
      <title>Re: How to suppress the output for PROC UNIVARIATE</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/How-to-suppress-the-output-for-PROC-UNIVARIATE/m-p/386414#M65809</link>
      <description>&lt;P&gt;Are you asking how to suppress ALL of the output from PROC UNIVARIATE?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Or are you asking how to suppress SOME of the output from PROC UNIVARIATE?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;it's not even clear to me why you need both PROC MEANS and PROC UNIVARIATE in sequence. Wouldn't just PROC UNIVARIATE give you everything you need in this case?&lt;/P&gt;</description>
      <pubDate>Tue, 08 Aug 2017 20:36:12 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/How-to-suppress-the-output-for-PROC-UNIVARIATE/m-p/386414#M65809</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2017-08-08T20:36:12Z</dc:date>
    </item>
    <item>
      <title>Re: How to suppress the output for PROC UNIVARIATE</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/How-to-suppress-the-output-for-PROC-UNIVARIATE/m-p/386425#M65810</link>
      <description>&lt;P&gt;Just some of PROC UNIVARIATE. And it's for an assignment so I'm required to use both PROC MEANS and PROC UNIVARIATE. If I wasn't then I would just use PROC UNIVARIATE.&lt;/P&gt;</description>
      <pubDate>Tue, 08 Aug 2017 21:06:16 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/How-to-suppress-the-output-for-PROC-UNIVARIATE/m-p/386425#M65810</guid>
      <dc:creator>chloelane</dc:creator>
      <dc:date>2017-08-08T21:06:16Z</dc:date>
    </item>
    <item>
      <title>Re: How to suppress the output for PROC UNIVARIATE</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/How-to-suppress-the-output-for-PROC-UNIVARIATE/m-p/386436#M65812</link>
      <description>&lt;P&gt;You can use ODS SELECT to select the parts of PROC UNIVARIATE you want to keep.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;So, first use&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;ODS TRACE ON;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;then run PROC UNIVARIATE and all the parts of PROC UNIVARIATE will be specified in the SASLOG. Then run UNVIARIATE again with&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;ODS SELECT &amp;lt;part1&amp;gt; &amp;lt;part2&amp;gt; ... ;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;where &amp;lt;part1&amp;gt; etc are the actual names of the parts of PROC UNIVARIATE as shown in the SASLOG.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Look up tutorials on SAS ODS SELECT for more details.&lt;/P&gt;</description>
      <pubDate>Tue, 08 Aug 2017 22:03:52 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/How-to-suppress-the-output-for-PROC-UNIVARIATE/m-p/386436#M65812</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2017-08-08T22:03:52Z</dc:date>
    </item>
    <item>
      <title>Re: How to suppress the output for PROC UNIVARIATE</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/How-to-suppress-the-output-for-PROC-UNIVARIATE/m-p/386614#M65816</link>
      <description>&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc univariate data=sashelp.class noprint;
var age;
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 09 Aug 2017 13:32:31 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/How-to-suppress-the-output-for-PROC-UNIVARIATE/m-p/386614#M65816</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2017-08-09T13:32:31Z</dc:date>
    </item>
    <item>
      <title>Re: How to suppress the output for PROC UNIVARIATE</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/How-to-suppress-the-output-for-PROC-UNIVARIATE/m-p/386655#M65821</link>
      <description>&lt;P&gt;PaigeMiller suggested, "&lt;SPAN&gt;Look up tutorials on SAS ODS SELECT for more details." &amp;nbsp;One&amp;nbsp;reference that addresses this subject is&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;A href="http://blogs.sas.com/content/iml/2015/05/26/suppress-ods.html" target="_self"&gt;"What is the best way to suppress ODS output in SAS?"&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 09 Aug 2017 14:28:41 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/How-to-suppress-the-output-for-PROC-UNIVARIATE/m-p/386655#M65821</guid>
      <dc:creator>Rick_SAS</dc:creator>
      <dc:date>2017-08-09T14:28:41Z</dc:date>
    </item>
    <item>
      <title>Re: How to suppress the output for PROC UNIVARIATE</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/How-to-suppress-the-output-for-PROC-UNIVARIATE/m-p/386726#M65828</link>
      <description>&lt;P&gt;Thanks! I'll take a look at it.&lt;/P&gt;</description>
      <pubDate>Wed, 09 Aug 2017 17:36:35 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/How-to-suppress-the-output-for-PROC-UNIVARIATE/m-p/386726#M65828</guid>
      <dc:creator>chloelane</dc:creator>
      <dc:date>2017-08-09T17:36:35Z</dc:date>
    </item>
    <item>
      <title>Re: How to suppress the output for PROC UNIVARIATE</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/How-to-suppress-the-output-for-PROC-UNIVARIATE/m-p/386727#M65829</link>
      <description>&lt;P&gt;Thanks! I'll try it.&lt;/P&gt;</description>
      <pubDate>Wed, 09 Aug 2017 17:37:06 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/How-to-suppress-the-output-for-PROC-UNIVARIATE/m-p/386727#M65829</guid>
      <dc:creator>chloelane</dc:creator>
      <dc:date>2017-08-09T17:37:06Z</dc:date>
    </item>
    <item>
      <title>Re: How to suppress the output for PROC UNIVARIATE</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/How-to-suppress-the-output-for-PROC-UNIVARIATE/m-p/386728#M65830</link>
      <description>&lt;P&gt;Thanks! I'll see if it works.&lt;/P&gt;</description>
      <pubDate>Wed, 09 Aug 2017 17:37:33 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/How-to-suppress-the-output-for-PROC-UNIVARIATE/m-p/386728#M65830</guid>
      <dc:creator>chloelane</dc:creator>
      <dc:date>2017-08-09T17:37:33Z</dc:date>
    </item>
  </channel>
</rss>

