<?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: Odds Ratio Interpretation in Statistical Procedures</title>
    <link>https://communities.sas.com/t5/Statistical-Procedures/Odds-Ratio-Interpretation/m-p/960119#M48092</link>
    <description>By 'predictive', I just means it's positively associated with hypertension, not that rurality causes hypertension.</description>
    <pubDate>Mon, 24 Feb 2025 21:45:37 GMT</pubDate>
    <dc:creator>quickbluefish</dc:creator>
    <dc:date>2025-02-24T21:45:37Z</dc:date>
    <item>
      <title>Odds Ratio Interpretation</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Odds-Ratio-Interpretation/m-p/960116#M48090</link>
      <description>&lt;P&gt;Hello!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I need some help interpretating an odds ratio SAS output.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Below is the code. The hot_spot variable is coded as 1= yes, its a hypertension hotspot, 0 = no, it is not a hypertension hotspot. The rural variable is coded as 0= not rural and 1=rural.&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;proc logistic data=work.research_lr;&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;class rural / PARAM = REF;&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;model hot_spot (event='1') = rural;&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;run;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;And this is the output:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="steph__0-1740430751439.jpeg" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/104913i51915501957E52FF/image-size/medium?v=v2&amp;amp;px=400" role="button" title="steph__0-1740430751439.jpeg" alt="steph__0-1740430751439.jpeg" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;What would be the correct interpretation?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks in advance!&lt;/P&gt;</description>
      <pubDate>Mon, 24 Feb 2025 21:02:08 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Odds-Ratio-Interpretation/m-p/960116#M48090</guid>
      <dc:creator>steph_</dc:creator>
      <dc:date>2025-02-24T21:02:08Z</dc:date>
    </item>
    <item>
      <title>Re: Odds Ratio Interpretation</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Odds-Ratio-Interpretation/m-p/960118#M48091</link>
      <description>&lt;P&gt;I think your life will be easier if you use the DESCENDING option in the proc logistic statement -- that will make 0 the referent ("no") category for all binary variables.&amp;nbsp; Right now, you've currently got 0 as the referent group for your dependent (left hand side) variable (because of the event= syntax) and *1* as the referent group for the rural variable.&amp;nbsp; So interpretation is pretty non-intuitive at the moment.&amp;nbsp; Instead, do this:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc logistic data=work.research_lr DESCENDING;
model hot_spot = rural;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Doing the above should result in an odds ratio that's the reciprocal of what you currently have -- 1/0.627 = 1.595&lt;BR /&gt;An OR of 1.595 (assuming a confidence interval that does not include 1) would mean that rurality is predictive of hot spot hypertension.&amp;nbsp; More specifically, the interpretation is that the odds of hypertension are 1.6X higher for rural people than for non-rural people.&amp;nbsp;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 24 Feb 2025 21:44:25 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Odds-Ratio-Interpretation/m-p/960118#M48091</guid>
      <dc:creator>quickbluefish</dc:creator>
      <dc:date>2025-02-24T21:44:25Z</dc:date>
    </item>
    <item>
      <title>Re: Odds Ratio Interpretation</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Odds-Ratio-Interpretation/m-p/960119#M48092</link>
      <description>By 'predictive', I just means it's positively associated with hypertension, not that rurality causes hypertension.</description>
      <pubDate>Mon, 24 Feb 2025 21:45:37 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Odds-Ratio-Interpretation/m-p/960119#M48092</guid>
      <dc:creator>quickbluefish</dc:creator>
      <dc:date>2025-02-24T21:45:37Z</dc:date>
    </item>
    <item>
      <title>Re: Odds Ratio Interpretation</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Odds-Ratio-Interpretation/m-p/960129#M48093</link>
      <description>That stands for &lt;BR /&gt;ODDS1= P( hot_spot ='1')/P( hot_spot ='0')  when rual=0&lt;BR /&gt;ODDS2= P( hot_spot ='1')/P( hot_spot ='0')  when rual=1&lt;BR /&gt;ODDS1/ODDS2=0.627 &lt;BR /&gt;&lt;BR /&gt;rural=0 has lower 0.373(=1-0.627) probability of getting  P( hot_spot ='1')  than rual=1 .&lt;BR /&gt;&lt;BR /&gt;            &lt;A href="https://support.sas.com/kb/42/728.html" target="_blank"&gt;https://support.sas.com/kb/42/728.html&lt;/A&gt;&lt;BR /&gt;</description>
      <pubDate>Tue, 25 Feb 2025 02:34:00 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Odds-Ratio-Interpretation/m-p/960129#M48093</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2025-02-25T02:34:00Z</dc:date>
    </item>
  </channel>
</rss>

