<?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: Proc Logistic Print only Max Likelihood Results in SAS Procedures</title>
    <link>https://communities.sas.com/t5/SAS-Procedures/Proc-Logistic-Print-only-Max-Likelihood-Results/m-p/247789#M56337</link>
    <description>&lt;P&gt;The ODS Select option will select specific output objects.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;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;lt;your procedure code&amp;gt;&lt;/P&gt;
&lt;P&gt;ODS Trace off;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;to identify the output objects created so you you have the Name of the object you want to select.&lt;/P&gt;</description>
    <pubDate>Wed, 03 Feb 2016 16:33:04 GMT</pubDate>
    <dc:creator>ballardw</dc:creator>
    <dc:date>2016-02-03T16:33:04Z</dc:date>
    <item>
      <title>Proc Logistic Print only Max Likelihood Results</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Proc-Logistic-Print-only-Max-Likelihood-Results/m-p/247787#M56335</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I am running using proc logistic to get a propensity score to then match individuals from groups to create comparison groups. In the proc logistic output I want to ONLY see the Analysis of MLE table because I am eventually only going to export that to Excel.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;These are the current specifications I have:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier"&gt;&lt;FONT color="#000080"&gt;&lt;STRONG&gt;proc&lt;/STRONG&gt;&lt;/FONT&gt; &lt;STRONG&gt;&lt;FONT color="#000080"&gt;logistic&lt;/FONT&gt;&lt;/STRONG&gt; &lt;FONT color="#0000ff"&gt;data&lt;/FONT&gt;=test_a &lt;FONT color="#0000ff"&gt;descending&lt;/FONT&gt;;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier"&gt;&lt;FONT color="#0000ff"&gt;&lt;FONT color="#0000ff"&gt;&lt;FONT color="#0000ff"&gt;class&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt; female&lt;/FONT&gt;&lt;FONT face="courier new,courier"&gt;;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier"&gt;&lt;FONT color="#0000ff"&gt;&lt;FONT color="#0000ff"&gt;&lt;FONT color="#0000ff"&gt;model&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt; test=p_total_ab age65_older female&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier"&gt;/ &lt;FONT color="#0000ff"&gt;&lt;FONT color="#0000ff"&gt;&lt;FONT color="#0000ff"&gt;SELECTION&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;=stepwise &lt;FONT color="#0000ff"&gt;&lt;FONT color="#0000ff"&gt;&lt;FONT color="#0000ff"&gt;RISKLIMITS&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt; &lt;FONT color="#0000ff"&gt;&lt;FONT color="#0000ff"&gt;&lt;FONT color="#0000ff"&gt;LACKFIT&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt; &lt;FONT color="#0000ff"&gt;&lt;FONT color="#0000ff"&gt;&lt;FONT color="#0000ff"&gt;RSQUARE&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt; &lt;FONT color="#0000ff"&gt;&lt;FONT color="#0000ff"&gt;&lt;FONT color="#0000ff"&gt;PARMLABEL&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier"&gt;&lt;FONT color="#0000ff"&gt;&lt;FONT color="#0000ff"&gt;&lt;FONT color="#0000ff"&gt;output&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt; &lt;FONT color="#0000ff"&gt;&lt;FONT color="#0000ff"&gt;&lt;FONT color="#0000ff"&gt;out&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;=propensity_scores&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier"&gt;&lt;FONT color="#0000ff"&gt;&lt;FONT color="#0000ff"&gt;&lt;FONT color="#0000ff"&gt;prob&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;= prob;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier"&gt;&lt;FONT color="#000080"&gt;&lt;FONT color="#000080"&gt;&lt;FONT color="#000080"&gt;&lt;STRONG&gt;run&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="arial,helvetica,sans-serif"&gt;Again, the question I have is how to isolate the Analysis of MLE table to only output that. I understand noprint doesn't print anything, but I want the MLE table.&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 03 Feb 2016 16:26:52 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Proc-Logistic-Print-only-Max-Likelihood-Results/m-p/247787#M56335</guid>
      <dc:creator>jacob_klimek</dc:creator>
      <dc:date>2016-02-03T16:26:52Z</dc:date>
    </item>
    <item>
      <title>Re: Proc Logistic Print only Max Likelihood Results</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Proc-Logistic-Print-only-Max-Likelihood-Results/m-p/247789#M56337</link>
      <description>&lt;P&gt;The ODS Select option will select specific output objects.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;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;lt;your procedure code&amp;gt;&lt;/P&gt;
&lt;P&gt;ODS Trace off;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;to identify the output objects created so you you have the Name of the object you want to select.&lt;/P&gt;</description>
      <pubDate>Wed, 03 Feb 2016 16:33:04 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Proc-Logistic-Print-only-Max-Likelihood-Results/m-p/247789#M56337</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2016-02-03T16:33:04Z</dc:date>
    </item>
    <item>
      <title>Re: Proc Logistic Print only Max Likelihood Results</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Proc-Logistic-Print-only-Max-Likelihood-Results/m-p/247791#M56338</link>
      <description>&lt;P&gt;In other words: Just execute the following statement immediately before your PROC LOGISTIC step:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;ods select ParameterEstimates;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 03 Feb 2016 16:38:02 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Proc-Logistic-Print-only-Max-Likelihood-Results/m-p/247791#M56338</guid>
      <dc:creator>FreelanceReinh</dc:creator>
      <dc:date>2016-02-03T16:38:02Z</dc:date>
    </item>
    <item>
      <title>Re: Proc Logistic Print only Max Likelihood Results</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Proc-Logistic-Print-only-Max-Likelihood-Results/m-p/247797#M56340</link>
      <description>&lt;P&gt;For some reason only the path (Logistic.ParameterEstimates;&amp;nbsp; ) works, but thanks!&lt;/P&gt;</description>
      <pubDate>Wed, 03 Feb 2016 16:51:12 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Proc-Logistic-Print-only-Max-Likelihood-Results/m-p/247797#M56340</guid>
      <dc:creator>jacob_klimek</dc:creator>
      <dc:date>2016-02-03T16:51:12Z</dc:date>
    </item>
  </channel>
</rss>

