<?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: ODS select: selecting only the final ParameterEstimates and Association in PROC LOGISTIC in ODS and Base Reporting</title>
    <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-select-selecting-only-the-final-ParameterEstimates-and/m-p/346675#M18264</link>
    <description>&lt;P&gt;Thanks for your reply.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Your suggestion&amp;nbsp;makes sense and would work with a loop.&amp;nbsp;But there is no loop here, the outputs are created by the PROC LOGISTIC procedure and the procedure's stepwise selection.&lt;/P&gt;&lt;P&gt;The procedure provides path of&amp;nbsp;&lt;SPAN&gt;ParameterEstimates and&amp;nbsp;Association outputs in each step. For example "Step32" as below:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;Output Added:&lt;BR /&gt;-------------&lt;BR /&gt;Name: ParameterEstimates&lt;BR /&gt;Label: Parameter Estimates&lt;BR /&gt;Template: Stat.Logistic.ParameterEstimates&lt;BR /&gt;Path: Logistic.Step32.ParameterEstimates&lt;BR /&gt;-------------&lt;/PRE&gt;&lt;P&gt;My&amp;nbsp;problem is that I cannot use this path to refer to my last output, as the number of&amp;nbsp;&lt;SPAN&gt;iterations&amp;nbsp;&lt;/SPAN&gt;resulting the final model&amp;nbsp;is not known beforehand.&lt;/P&gt;</description>
    <pubDate>Mon, 03 Apr 2017 13:59:06 GMT</pubDate>
    <dc:creator>Akos</dc:creator>
    <dc:date>2017-04-03T13:59:06Z</dc:date>
    <item>
      <title>ODS select: selecting only the final ParameterEstimates and Association in PROC LOGISTIC</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-select-selecting-only-the-final-ParameterEstimates-and/m-p/346621#M18261</link>
      <description>&lt;P&gt;I dump my stepwise logistic regression model results into an Excel file using&amp;nbsp;ODS EXCEL but I save only a few of the outputs:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;ods select NObs ResponseProfile ParameterEstimates Association ModelBuildingSummary LackFitPartition LackFitChiSq;&lt;/PRE&gt;&lt;P&gt;Is there a way to get dumped ParameterEstimates and Association&amp;nbsp;tables&amp;nbsp;&lt;SPAN&gt;only from the final&amp;nbsp;step/iteration of the model? Right now these&amp;nbsp;get dumped from each steps and I&amp;nbsp;am not really interested in those as I get a good overview from&amp;nbsp;ModelBuildingSummary anyway.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Thanks for any help.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 03 Apr 2017 10:50:52 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-select-selecting-only-the-final-ParameterEstimates-and/m-p/346621#M18261</guid>
      <dc:creator>Akos</dc:creator>
      <dc:date>2017-04-03T10:50:52Z</dc:date>
    </item>
    <item>
      <title>Re: ODS select: selecting only the final ParameterEstimates and Association in PROC LOGISTIC</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-select-selecting-only-the-final-ParameterEstimates-and/m-p/346663#M18262</link>
      <description>&lt;P&gt;Not really clear from your post here. &amp;nbsp;Are you looping over some procedure, or is this a loop within a procedure? &amp;nbsp;If its a loop around a procedure, then just call the ods select at final iteration:&lt;/P&gt;
&lt;PRE&gt;...
  %do i=1 to %10;
    %if &amp;amp;i=10 %then %do;
      ods select nobs=number_of_observations;
    %end;
    proc...
  %end;
...
   &lt;/PRE&gt;
&lt;P&gt;So on last iteration the number_of_observations dataset gets created.&lt;/P&gt;
&lt;P&gt;If its within a procedure, the the resulting dataset at the end will have some sort of indicator for each group of data.&lt;/P&gt;</description>
      <pubDate>Mon, 03 Apr 2017 13:25:34 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-select-selecting-only-the-final-ParameterEstimates-and/m-p/346663#M18262</guid>
      <dc:creator>RW9</dc:creator>
      <dc:date>2017-04-03T13:25:34Z</dc:date>
    </item>
    <item>
      <title>Re: ODS select: selecting only the final ParameterEstimates and Association in PROC LOGISTIC</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-select-selecting-only-the-final-ParameterEstimates-and/m-p/346675#M18264</link>
      <description>&lt;P&gt;Thanks for your reply.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Your suggestion&amp;nbsp;makes sense and would work with a loop.&amp;nbsp;But there is no loop here, the outputs are created by the PROC LOGISTIC procedure and the procedure's stepwise selection.&lt;/P&gt;&lt;P&gt;The procedure provides path of&amp;nbsp;&lt;SPAN&gt;ParameterEstimates and&amp;nbsp;Association outputs in each step. For example "Step32" as below:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;Output Added:&lt;BR /&gt;-------------&lt;BR /&gt;Name: ParameterEstimates&lt;BR /&gt;Label: Parameter Estimates&lt;BR /&gt;Template: Stat.Logistic.ParameterEstimates&lt;BR /&gt;Path: Logistic.Step32.ParameterEstimates&lt;BR /&gt;-------------&lt;/PRE&gt;&lt;P&gt;My&amp;nbsp;problem is that I cannot use this path to refer to my last output, as the number of&amp;nbsp;&lt;SPAN&gt;iterations&amp;nbsp;&lt;/SPAN&gt;resulting the final model&amp;nbsp;is not known beforehand.&lt;/P&gt;</description>
      <pubDate>Mon, 03 Apr 2017 13:59:06 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-select-selecting-only-the-final-ParameterEstimates-and/m-p/346675#M18264</guid>
      <dc:creator>Akos</dc:creator>
      <dc:date>2017-04-03T13:59:06Z</dc:date>
    </item>
    <item>
      <title>Re: ODS select: selecting only the final ParameterEstimates and Association in PROC LOGISTIC</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-select-selecting-only-the-final-ParameterEstimates-and/m-p/346754#M18277</link>
      <description>&lt;P&gt;An example to play around with would be helpful, I am running blind here and don't use proc logistic very often. &amp;nbsp;It does however have an output out=&amp;lt;dataset&amp;gt; &amp;lt;options; line, does the output dataset from that not have what you want (as said can't really test it).&lt;/P&gt;</description>
      <pubDate>Mon, 03 Apr 2017 16:53:52 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-select-selecting-only-the-final-ParameterEstimates-and/m-p/346754#M18277</guid>
      <dc:creator>RW9</dc:creator>
      <dc:date>2017-04-03T16:53:52Z</dc:date>
    </item>
  </channel>
</rss>

