<?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: Supress all but one statistic in a PROC in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Supress-all-but-one-statistic-in-a-PROC/m-p/99217#M20891</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Use ODS to extract only the statistic you want. Terminate your GLM step by the statements :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;proc glm .....&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;....&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp; MEANS ... / HOVTEST=LEVENE;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;...&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp; ods select none;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp; ods output HOVFTest = ht( where=(probf is not missing) keep=fvalue probf );&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;run;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp; ods select all;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;quit;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Dataset ht will contain the F value and probability of Levene's test.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PG&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 01 Oct 2013 01:56:42 GMT</pubDate>
    <dc:creator>PGStats</dc:creator>
    <dc:date>2013-10-01T01:56:42Z</dc:date>
    <item>
      <title>Supress all but one statistic in a PROC</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Supress-all-but-one-statistic-in-a-PROC/m-p/99215#M20889</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt; I am writing a program and all I want is the Levene's Test statistic in PROC GLM-- I don't need the rest of the output. Is there any way to just extract the Levene's test or suppress everything but the Levene's test? Thanks for any help you could give!&lt;/P&gt;&lt;P&gt;-Charles&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 01 Oct 2013 01:27:27 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Supress-all-but-one-statistic-in-a-PROC/m-p/99215#M20889</guid>
      <dc:creator>CharlesC</dc:creator>
      <dc:date>2013-10-01T01:27:27Z</dc:date>
    </item>
    <item>
      <title>Re: Supress all but one statistic in a PROC</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Supress-all-but-one-statistic-in-a-PROC/m-p/99216#M20890</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Charles,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Use the ods select HOVFTest; statement before your PROC GLM code. Be sure to then reset your ODS select to all afterwards.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;ods select HOVFTest;
proc glm data=sashelp.cars;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; class make;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; model weight=make;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; means make / hovtest;
run;
quit;
ods select all;
&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers,&lt;/P&gt;&lt;P&gt;Michelle&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 01 Oct 2013 01:55:44 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Supress-all-but-one-statistic-in-a-PROC/m-p/99216#M20890</guid>
      <dc:creator>MichelleHomes</dc:creator>
      <dc:date>2013-10-01T01:55:44Z</dc:date>
    </item>
    <item>
      <title>Re: Supress all but one statistic in a PROC</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Supress-all-but-one-statistic-in-a-PROC/m-p/99217#M20891</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Use ODS to extract only the statistic you want. Terminate your GLM step by the statements :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;proc glm .....&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;....&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp; MEANS ... / HOVTEST=LEVENE;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;...&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp; ods select none;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp; ods output HOVFTest = ht( where=(probf is not missing) keep=fvalue probf );&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;run;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp; ods select all;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;quit;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Dataset ht will contain the F value and probability of Levene's test.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PG&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 01 Oct 2013 01:56:42 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Supress-all-but-one-statistic-in-a-PROC/m-p/99217#M20891</guid>
      <dc:creator>PGStats</dc:creator>
      <dc:date>2013-10-01T01:56:42Z</dc:date>
    </item>
    <item>
      <title>Re: Supress all but one statistic in a PROC</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Supress-all-but-one-statistic-in-a-PROC/m-p/99218#M20892</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you, that worked perfectly!&amp;nbsp; If I wanted to just select the parametric estimates table with the variance inflation factor and my proc reg code looked like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; font-family: Courier New;"&gt; &lt;/SPAN&gt;&lt;STRONG style=": ; color: #000080; font-size: 10pt; font-family: Courier New;"&gt;REG&lt;/STRONG&gt;&lt;SPAN style="font-size: 10pt; font-family: Courier New;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 10pt; font-family: Courier New;"&gt;DATA&lt;/SPAN&gt;&lt;SPAN style="font-size: 10pt; font-family: Courier New;"&gt;=&amp;amp;&lt;/SPAN&gt;&lt;SPAN style="color: #008080; font-size: 10pt; font-family: Courier New;"&gt;userdata.&lt;/SPAN&gt;&lt;SPAN style="font-size: 10pt; font-family: Courier New;"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #0000ff; font-size: 10pt; font-family: Courier New;"&gt;Linear_Regression_Model: MODEL&lt;/SPAN&gt;&lt;SPAN style="font-size: 10pt; font-family: Courier New;"&gt; x2 = x3 x4 x5 x6 x7&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; font-family: Courier New;"&gt;/&lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 10pt; font-family: Courier New;"&gt;VIF&lt;/SPAN&gt;&lt;SPAN style="font-size: 10pt; font-family: Courier New;"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; font-family: Courier New;"&gt;RUN;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; font-family: Courier New;"&gt;QUIT;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; font-family: Courier New;"&gt;what is the name of the ods output? VIF?&amp;nbsp; How are you be able to tell what the name of a table in SAS output is?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; font-family: Courier New;"&gt;Thanks again.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; font-family: Courier New;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 01 Oct 2013 03:25:36 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Supress-all-but-one-statistic-in-a-PROC/m-p/99218#M20892</guid>
      <dc:creator>CharlesC</dc:creator>
      <dc:date>2013-10-01T03:25:36Z</dc:date>
    </item>
    <item>
      <title>Re: Supress all but one statistic in a PROC</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Supress-all-but-one-statistic-in-a-PROC/m-p/99219#M20893</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You would specify ods trace on; before your proc glm and ods trace off; afterwards and then check the log for the name of the ods table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For example...&lt;/P&gt;&lt;PRE&gt;ods trace on;
proc reg data=sashelp.class;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; model weight=height /vif;
run;
quit;
ods trace off;
&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And in the log you will see the names of the ods tables, so the ParameterEstimates contains the VIF.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Cheers,&lt;/P&gt;&lt;P&gt;Michelle&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 01 Oct 2013 04:09:55 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Supress-all-but-one-statistic-in-a-PROC/m-p/99219#M20893</guid>
      <dc:creator>MichelleHomes</dc:creator>
      <dc:date>2013-10-01T04:09:55Z</dc:date>
    </item>
    <item>
      <title>Re: Supress all but one statistic in a PROC</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Supress-all-but-one-statistic-in-a-PROC/m-p/99220#M20894</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks again!!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 01 Oct 2013 16:07:13 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Supress-all-but-one-statistic-in-a-PROC/m-p/99220#M20894</guid>
      <dc:creator>CharlesC</dc:creator>
      <dc:date>2013-10-01T16:07:13Z</dc:date>
    </item>
    <item>
      <title>Re: Supress all but one statistic in a PROC</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Supress-all-but-one-statistic-in-a-PROC/m-p/99221#M20895</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Micelle's answer will (almost) always give you the table names, but the documentation also lists the ODS Table Names, along with required statements or options, under the Details tab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Steve Denham&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 Oct 2013 14:50:49 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Supress-all-but-one-statistic-in-a-PROC/m-p/99221#M20895</guid>
      <dc:creator>SteveDenham</dc:creator>
      <dc:date>2013-10-03T14:50:49Z</dc:date>
    </item>
  </channel>
</rss>

