<?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 calculate adjusted odds ratios and 95% CIs for GEE using proc genmod in Statistical Procedures</title>
    <link>https://communities.sas.com/t5/Statistical-Procedures/How-to-calculate-adjusted-odds-ratios-and-95-CIs-for-GEE-using/m-p/408846#M21316</link>
    <description>&lt;P&gt;If you use the PARAM=GLM option on the CLASS statement then you will be able to use the ODDSRATIO option on the LSMEANS statement.&amp;nbsp; These estimates will all be adjusted for the other effects in the model.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;proc genmod data=work.opioid27;&lt;/P&gt;
&lt;P&gt;class BJH_MedRec countx (ref="1") racex (ref="1") agegrp (ref="2") narcanx (ref="1") alcoholx (ref="1") moodx (ref="1") sudx (ref="1") yr (ref="2005") / param=glm;&lt;/P&gt;
&lt;P&gt;model suicidex=countx racex agegrp narcanx alcoholx moodx sudx yr / dist=bin link=logit;&lt;/P&gt;
&lt;P&gt;repeated subject=BJH_MedRec / type=cs;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;lsmeans countx racex agegrp narcanx alcoholx moodx sudx yr/diff oddsratio cl;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;run;&lt;/P&gt;</description>
    <pubDate>Mon, 30 Oct 2017 18:58:04 GMT</pubDate>
    <dc:creator>SAS_Rob</dc:creator>
    <dc:date>2017-10-30T18:58:04Z</dc:date>
    <item>
      <title>How to calculate adjusted odds ratios and 95% CIs for GEE using proc genmod</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/How-to-calculate-adjusted-odds-ratios-and-95-CIs-for-GEE-using/m-p/408458#M21311</link>
      <description>&lt;P&gt;Hi all- relatively new to SAS, and these forums have been really helpful, but I'm using a GEE (rather than logistic regression) because i have data with repeated measures and multiple predictors, but I can't figure out how to just have a basic table of ORs, 95% CIs, and p values.&amp;nbsp; I have tried ESTIMATE and LSMEANS but it's not giving me what I want (the analyses look bivariate with both).&amp;nbsp; Here is my model:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;proc genmod data=work.opioid27;&lt;/P&gt;&lt;P&gt;class BJH_MedRec countx (ref="1") racex (ref="1") agegrp (ref="2") narcanx (ref="1") alcoholx (ref="1") moodx (ref="1") sudx (ref="1") yr (ref="2005") / param=ref;&lt;/P&gt;&lt;P&gt;model suicidex=countx racex agegrp narcanx alcoholx moodx sudx yr / dist=bin link=logit;&lt;/P&gt;&lt;P&gt;repeated subject=BJH_MedRec / type=cs;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;</description>
      <pubDate>Mon, 30 Oct 2017 03:20:02 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/How-to-calculate-adjusted-odds-ratios-and-95-CIs-for-GEE-using/m-p/408458#M21311</guid>
      <dc:creator>bsriv</dc:creator>
      <dc:date>2017-10-30T03:20:02Z</dc:date>
    </item>
    <item>
      <title>Re: How to calculate adjusted odds ratios and 95% CIs for GEE using proc genmod</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/How-to-calculate-adjusted-odds-ratios-and-95-CIs-for-GEE-using/m-p/408811#M21312</link>
      <description>&lt;P&gt;Did you try using the EXP option on the ESTIMATE statement? &lt;A href="http://support.sas.com/kb/42/728.html" target="_self"&gt;See the GEE example on this web page.&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 30 Oct 2017 17:48:13 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/How-to-calculate-adjusted-odds-ratios-and-95-CIs-for-GEE-using/m-p/408811#M21312</guid>
      <dc:creator>Rick_SAS</dc:creator>
      <dc:date>2017-10-30T17:48:13Z</dc:date>
    </item>
    <item>
      <title>Re: How to calculate adjusted odds ratios and 95% CIs for GEE using proc genmod</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/How-to-calculate-adjusted-odds-ratios-and-95-CIs-for-GEE-using/m-p/408846#M21316</link>
      <description>&lt;P&gt;If you use the PARAM=GLM option on the CLASS statement then you will be able to use the ODDSRATIO option on the LSMEANS statement.&amp;nbsp; These estimates will all be adjusted for the other effects in the model.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;proc genmod data=work.opioid27;&lt;/P&gt;
&lt;P&gt;class BJH_MedRec countx (ref="1") racex (ref="1") agegrp (ref="2") narcanx (ref="1") alcoholx (ref="1") moodx (ref="1") sudx (ref="1") yr (ref="2005") / param=glm;&lt;/P&gt;
&lt;P&gt;model suicidex=countx racex agegrp narcanx alcoholx moodx sudx yr / dist=bin link=logit;&lt;/P&gt;
&lt;P&gt;repeated subject=BJH_MedRec / type=cs;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;lsmeans countx racex agegrp narcanx alcoholx moodx sudx yr/diff oddsratio cl;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;run;&lt;/P&gt;</description>
      <pubDate>Mon, 30 Oct 2017 18:58:04 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/How-to-calculate-adjusted-odds-ratios-and-95-CIs-for-GEE-using/m-p/408846#M21316</guid>
      <dc:creator>SAS_Rob</dc:creator>
      <dc:date>2017-10-30T18:58:04Z</dc:date>
    </item>
    <item>
      <title>Re: How to calculate adjusted odds ratios and 95% CIs for GEE using proc genmod</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/How-to-calculate-adjusted-odds-ratios-and-95-CIs-for-GEE-using/m-p/408900#M21327</link>
      <description>&lt;P&gt;Thank you!&amp;nbsp;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 30 Oct 2017 20:41:03 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/How-to-calculate-adjusted-odds-ratios-and-95-CIs-for-GEE-using/m-p/408900#M21327</guid>
      <dc:creator>bsriv</dc:creator>
      <dc:date>2017-10-30T20:41:03Z</dc:date>
    </item>
  </channel>
</rss>

