<?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: suppress proc logistic print out in Statistical Procedures</title>
    <link>https://communities.sas.com/t5/Statistical-Procedures/suppress-proc-logistic-print-out/m-p/919219#M45640</link>
    <description>&lt;P&gt;You can use ODS SELECT to list the items you want to have as output from a procedure.&lt;/P&gt;</description>
    <pubDate>Thu, 07 Mar 2024 01:38:59 GMT</pubDate>
    <dc:creator>ballardw</dc:creator>
    <dc:date>2024-03-07T01:38:59Z</dc:date>
    <item>
      <title>suppress proc logistic print out</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/suppress-proc-logistic-print-out/m-p/919215#M45639</link>
      <description>&lt;P&gt;Hi.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;First time to post here. I need your help on suppressing the print out of proc logistic.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;data ingots;&lt;BR /&gt;input Heat Soak r n @@;&lt;BR /&gt;datalines;&lt;BR /&gt;7 1.0 0 10 14 1.0 0 31 27 1.0 1 56 51 1.0 3 13&lt;BR /&gt;7 1.7 0 17 14 1.7 0 43 27 1.7 4 44 51 1.7 0 1&lt;BR /&gt;7 2.2 0 7 14 2.2 2 33 27 2.2 0 21 51 2.2 0 1&lt;BR /&gt;7 2.8 0 12 14 2.8 0 31 27 2.8 1 22 51 4.0 0 1&lt;BR /&gt;7 4.0 0 9 14 4.0 0 19 27 4.0 1 16&lt;BR /&gt;;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;ods graphics on;&lt;BR /&gt;proc logistic data=ingots;&lt;BR /&gt;model r/n = Heat | Soak;&lt;BR /&gt;oddsratio Heat / at(Soak=1 2 3 4);&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;ods output ParamterEstimates=my_est;&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;proc compare data=ingots c=ingots listall;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Executing the above code, my lst file has the logistic model print out, as well as my final proc compare print out.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I only want the&lt;/P&gt;&lt;P&gt;1.&amp;nbsp;ParamterEstimates=my_est data set&lt;/P&gt;&lt;P&gt;2. proc compare print out&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;so how to suppress the proc logistic model print out?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Dan&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 07 Mar 2024 00:37:18 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/suppress-proc-logistic-print-out/m-p/919215#M45639</guid>
      <dc:creator>Nikon1234</dc:creator>
      <dc:date>2024-03-07T00:37:18Z</dc:date>
    </item>
    <item>
      <title>Re: suppress proc logistic print out</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/suppress-proc-logistic-print-out/m-p/919219#M45640</link>
      <description>&lt;P&gt;You can use ODS SELECT to list the items you want to have as output from a procedure.&lt;/P&gt;</description>
      <pubDate>Thu, 07 Mar 2024 01:38:59 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/suppress-proc-logistic-print-out/m-p/919219#M45640</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2024-03-07T01:38:59Z</dc:date>
    </item>
    <item>
      <title>Re: suppress proc logistic print out</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/suppress-proc-logistic-print-out/m-p/919317#M45647</link>
      <description>&lt;P&gt;You can suppress all displayed output from any procedure by using the ODS EXCLUDE ALL; statement before the procedure. Be sure to turn the display of output back on afterwards with ODS SELECT ALL; . This still allows for the creating of output data sets using the ODS OUTPUT statement. For example,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;ods exclude all;
proc logistic data=ingots;
model r/n = Heat | Soak;
oddsratio Heat / at(Soak=1 2 3 4);
ods output ParamterEstimates=my_est;
run;
ods select all;
 &lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 07 Mar 2024 14:47:21 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/suppress-proc-logistic-print-out/m-p/919317#M45647</guid>
      <dc:creator>StatDave</dc:creator>
      <dc:date>2024-03-07T14:47:21Z</dc:date>
    </item>
  </channel>
</rss>

