<?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 Odds ratio table in 9.3 in Statistical Procedures</title>
    <link>https://communities.sas.com/t5/Statistical-Procedures/Odds-ratio-table-in-9-3/m-p/27878#M1061</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for the replies. &lt;/P&gt;&lt;P&gt;Another helpful reply that I got from David Schlotzhauer at SAS is to use the default option for units. This results in all variables being given an estimate. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P class="p1"&gt;proc logistic desc data = _temp_;&lt;/P&gt;&lt;P class="p1"&gt;class cat1 cat2;&lt;/P&gt;&lt;P class="p1"&gt;model outcome = cont1 cat1 cat2 cont2 /clodds=pl;&lt;/P&gt;&lt;P class="p1"&gt;units cont1 = 20 / default=1;&lt;/P&gt;&lt;P class="p1"&gt;run;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 21 Oct 2011 14:56:47 GMT</pubDate>
    <dc:creator>JohnB_</dc:creator>
    <dc:date>2011-10-21T14:56:47Z</dc:date>
    <item>
      <title>Odds ratio table in 9.3</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Odds-ratio-table-in-9-3/m-p/27875#M1058</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The default behavior for proc logistic in sas 9.3 has changed as described below:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;"If the ODDSRATIO statement or CLODDS= option is speciﬁed, the default “Odds Ratio” table is no longer&lt;/P&gt;&lt;P&gt;produced, and only the requested results are displayed."&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any idea why this was done? I have code that used to output the oddsratio table using ods, and the CloddsPL table for another variable. Now the oddsratio table no longer exists when I use the CLODDS= option. Is there a way to get this back?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 11 Oct 2011 17:59:39 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Odds-ratio-table-in-9-3/m-p/27875#M1058</guid>
      <dc:creator>JohnB_</dc:creator>
      <dc:date>2011-10-11T17:59:39Z</dc:date>
    </item>
    <item>
      <title>Odds ratio table in 9.3</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Odds-ratio-table-in-9-3/m-p/27876#M1059</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt; It doesn't look like it.&amp;nbsp; The only workaround I see is to specify each term in a separate ODDSRATIO statement, and get what you need from the ODS table OddsRatiosPL.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Good luck,&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>Wed, 12 Oct 2011 11:51:26 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Odds-ratio-table-in-9-3/m-p/27876#M1059</guid>
      <dc:creator>SteveDenham</dc:creator>
      <dc:date>2011-10-12T11:51:26Z</dc:date>
    </item>
    <item>
      <title>Odds ratio table in 9.3</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Odds-ratio-table-in-9-3/m-p/27877#M1060</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Specify CLODDS=BOTH.&amp;nbsp; The CloddsWald table contains all the results from the default OR table, and you'll still get your CloddsPL results.&lt;/P&gt;&lt;P&gt;CLODDS and ODDSRATIO add several OR tables, and some complaints rolled in about clutter and it being tough to tell which table came from what.&amp;nbsp; The assumption that anybody specifying CLODDS and/or ODDSRATIO would ignore the default table obviously wasn't quite correct!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 21 Oct 2011 14:49:13 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Odds-ratio-table-in-9-3/m-p/27877#M1060</guid>
      <dc:creator>bobderr</dc:creator>
      <dc:date>2011-10-21T14:49:13Z</dc:date>
    </item>
    <item>
      <title>Odds ratio table in 9.3</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Odds-ratio-table-in-9-3/m-p/27878#M1061</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for the replies. &lt;/P&gt;&lt;P&gt;Another helpful reply that I got from David Schlotzhauer at SAS is to use the default option for units. This results in all variables being given an estimate. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P class="p1"&gt;proc logistic desc data = _temp_;&lt;/P&gt;&lt;P class="p1"&gt;class cat1 cat2;&lt;/P&gt;&lt;P class="p1"&gt;model outcome = cont1 cat1 cat2 cont2 /clodds=pl;&lt;/P&gt;&lt;P class="p1"&gt;units cont1 = 20 / default=1;&lt;/P&gt;&lt;P class="p1"&gt;run;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 21 Oct 2011 14:56:47 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Odds-ratio-table-in-9-3/m-p/27878#M1061</guid>
      <dc:creator>JohnB_</dc:creator>
      <dc:date>2011-10-21T14:56:47Z</dc:date>
    </item>
  </channel>
</rss>

