<?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 intermediate step output in proc logistic- display final step information only? in Statistical Procedures</title>
    <link>https://communities.sas.com/t5/Statistical-Procedures/how-to-suppress-intermediate-step-output-in-proc-logistic/m-p/757588#M36866</link>
    <description>Hello,&lt;BR /&gt;Please see my log. There is a way of referring to the various step tables.&lt;BR /&gt;I just want the last one. Thanks.&lt;BR /&gt;MM&lt;BR /&gt;</description>
    <pubDate>Wed, 28 Jul 2021 05:02:17 GMT</pubDate>
    <dc:creator>MaryA_Marion</dc:creator>
    <dc:date>2021-07-28T05:02:17Z</dc:date>
    <item>
      <title>how to suppress intermediate step output in proc logistic- display final step information  only?</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/how-to-suppress-intermediate-step-output-in-proc-logistic/m-p/757568#M36864</link>
      <description>&lt;P&gt;I have tried various configurations of ods statements with proc logistic but I always get too much output.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;ods select will give all step results. See code below. Help, there is too much output this way! Thank you. MM&lt;/P&gt;
&lt;PRE&gt;ods select ClassLevelInfo ConvergenceStatus GoodnessOfFit &lt;BR /&gt;           LackFitChiSq &lt;BR /&gt;           ParameterEstimates clparmPL clparmWald&lt;BR /&gt;           OddsRatiosPL OddsRatiosWald&lt;BR /&gt;           FitStatistics GlobalTests; &lt;BR /&gt;proc logistic data=scenic order=data alpha=.05;&lt;BR /&gt;model School= Stay Age Risk Culture Chest Beds&lt;BR /&gt;              Region Census Nurses Facil / selection=stepwise&lt;BR /&gt;              scale=none aggregate rsquare gof lackfit&lt;BR /&gt;              clparm=both clodds=both&lt;BR /&gt;              influence expb; &lt;BR /&gt;run; quit;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 28 Jul 2021 01:10:50 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/how-to-suppress-intermediate-step-output-in-proc-logistic/m-p/757568#M36864</guid>
      <dc:creator>MaryA_Marion</dc:creator>
      <dc:date>2021-07-28T01:10:50Z</dc:date>
    </item>
    <item>
      <title>Re: how to suppress intermediate step output in proc logistic- display final step information  only?</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/how-to-suppress-intermediate-step-output-in-proc-logistic/m-p/757576#M36865</link>
      <description>&lt;P&gt;As always with questions like this, the answer is in the "Details: ODS Table Names" section of the procedure's documentation. In this case, you will find the following line in that section that identifies the name of table that you can use in an ODS SELECT statement to display that table:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;ModelBuildingSummary Summary of model building MODEL SELECTION=B | F | S&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;So, add ModelBuildingSummary in your ODS SELECT statement.&lt;/P&gt;</description>
      <pubDate>Wed, 28 Jul 2021 02:46:02 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/how-to-suppress-intermediate-step-output-in-proc-logistic/m-p/757576#M36865</guid>
      <dc:creator>StatDave</dc:creator>
      <dc:date>2021-07-28T02:46:02Z</dc:date>
    </item>
    <item>
      <title>Re: how to suppress intermediate step output in proc logistic- display final step information only?</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/how-to-suppress-intermediate-step-output-in-proc-logistic/m-p/757588#M36866</link>
      <description>Hello,&lt;BR /&gt;Please see my log. There is a way of referring to the various step tables.&lt;BR /&gt;I just want the last one. Thanks.&lt;BR /&gt;MM&lt;BR /&gt;</description>
      <pubDate>Wed, 28 Jul 2021 05:02:17 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/how-to-suppress-intermediate-step-output-in-proc-logistic/m-p/757588#M36866</guid>
      <dc:creator>MaryA_Marion</dc:creator>
      <dc:date>2021-07-28T05:02:17Z</dc:date>
    </item>
    <item>
      <title>Re: how to suppress intermediate step output in proc logistic- display final step information only?</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/how-to-suppress-intermediate-step-output-in-proc-logistic/m-p/757664#M36880</link>
      <description>&lt;P&gt;I don't see where you have provided a LOG.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;What specifically do you mean by "the last one"?&lt;/P&gt;</description>
      <pubDate>Wed, 28 Jul 2021 12:19:07 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/how-to-suppress-intermediate-step-output-in-proc-logistic/m-p/757664#M36880</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2021-07-28T12:19:07Z</dc:date>
    </item>
    <item>
      <title>Re: how to suppress intermediate step output in proc logistic- display final step information only?</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/how-to-suppress-intermediate-step-output-in-proc-logistic/m-p/757687#M36881</link>
      <description>&lt;P&gt;If what you want is just the set of tables from a particular Step in the model selection process, you can use a WHERE clause to select that Step. Note that you can refer to tables using their Path designation. This is described in more detail in the "Using the Output Delivery System" chapter in the SAS/STAT User's Guide. For example, to display only the results of Step 3, you can use the following statement:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;ods select where = (_path_ ? 'Step3');&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 28 Jul 2021 13:42:49 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/how-to-suppress-intermediate-step-output-in-proc-logistic/m-p/757687#M36881</guid>
      <dc:creator>StatDave</dc:creator>
      <dc:date>2021-07-28T13:42:49Z</dc:date>
    </item>
    <item>
      <title>Re: how to suppress intermediate step output in proc logistic- display final step information only?</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/how-to-suppress-intermediate-step-output-in-proc-logistic/m-p/757952#M36902</link>
      <description>&lt;P&gt;Do I use this statement once? I have been trying the following. These statements are not working. MM&lt;/P&gt;
&lt;PRE&gt;ods select ClassLevelInfo &lt;BR /&gt;           ConvergenceStatus where = (_path_ ? 'Step5') &lt;BR /&gt;           LackFitChiSq ModelBuildingSummary where = (_path_ ? 'Step5')&lt;BR /&gt;           GoodnessOfFit where = (_path_ ? 'Step5')&lt;BR /&gt;           ParameterEstimates clparmPL clparmWald&lt;BR /&gt;           /* OddsRatiosPL OddsRatiosWald */&lt;BR /&gt;           FitStatistics where = (_path_ ? 'Step5')&lt;BR /&gt;           GlobalTests where = (_path_ ? 'Step5')&lt;BR /&gt;           association&lt;BR /&gt;           EffectPlot influencePlots.'Panel 1' ROCCurve;?&amp;nbsp;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 28 Jul 2021 21:40:49 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/how-to-suppress-intermediate-step-output-in-proc-logistic/m-p/757952#M36902</guid>
      <dc:creator>MaryA_Marion</dc:creator>
      <dc:date>2021-07-28T21:40:49Z</dc:date>
    </item>
  </channel>
</rss>

