<?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: Display Odds Ratio Plot in Descending Order in Statistical Procedures</title>
    <link>https://communities.sas.com/t5/Statistical-Procedures/Display-Odds-Ratio-Plot-in-Descending-Order/m-p/886875#M43870</link>
    <description>&lt;P&gt;Apply a format to your RACE levels so that they are in the desired order when sorted.&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Fri, 28 Jul 2023 18:10:41 GMT</pubDate>
    <dc:creator>StatDave</dc:creator>
    <dc:date>2023-07-28T18:10:41Z</dc:date>
    <item>
      <title>Display Odds Ratio Plot in Descending Order</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Display-Odds-Ratio-Plot-in-Descending-Order/m-p/886850#M43869</link>
      <description>&lt;P&gt;Hello!&lt;/P&gt;&lt;P&gt;I wanted to display my Odds Ratio estimates/ Wale Confidence Limits in descending order.&amp;nbsp; Currently my plots look scattered like this with the following code:&lt;/P&gt;&lt;P&gt;proc logistic data=libraryname.test plots=(oddsratio) ;&lt;BR /&gt;class race (ref="1") /param=ref;&lt;BR /&gt;model outcomevar (event="Yes") =race;&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="fastandcurious_0-1690563626395.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/86218i9C3EA0FD169D1D40/image-size/medium?v=v2&amp;amp;px=400" role="button" title="fastandcurious_0-1690563626395.png" alt="fastandcurious_0-1690563626395.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I want the plots to display in order like this:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="fastandcurious_1-1690563827146.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/86219i754E67054281CA96/image-size/medium?v=v2&amp;amp;px=400" role="button" title="fastandcurious_1-1690563827146.png" alt="fastandcurious_1-1690563827146.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;I am not sure if it's possible but if it is,&amp;nbsp; what statement I should use and where? I thought there would be something for the model or plot statements but nothing I've tried has worked.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 28 Jul 2023 17:07:25 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Display-Odds-Ratio-Plot-in-Descending-Order/m-p/886850#M43869</guid>
      <dc:creator>fastandcurious</dc:creator>
      <dc:date>2023-07-28T17:07:25Z</dc:date>
    </item>
    <item>
      <title>Re: Display Odds Ratio Plot in Descending Order</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Display-Odds-Ratio-Plot-in-Descending-Order/m-p/886875#M43870</link>
      <description>&lt;P&gt;Apply a format to your RACE levels so that they are in the desired order when sorted.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 28 Jul 2023 18:10:41 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Display-Odds-Ratio-Plot-in-Descending-Order/m-p/886875#M43870</guid>
      <dc:creator>StatDave</dc:creator>
      <dc:date>2023-07-28T18:10:41Z</dc:date>
    </item>
    <item>
      <title>Re: Display Odds Ratio Plot in Descending Order</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Display-Odds-Ratio-Plot-in-Descending-Order/m-p/886892#M43871</link>
      <description>&lt;P&gt;Thank you! I will have to keep this in mind as an option. I ended up using the following solution and it worked for what I needed &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;&lt;P&gt;Thank you for helping out &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;&lt;P&gt;proc logistic data=libraryname.test &lt;FONT color="#008000"&gt;plots=ODDSRATIO(ORDER=DESCENDING)&lt;/FONT&gt; ;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="fastandcurious_0-1690570050719.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/86227i43556CFFDB104EE4/image-size/medium?v=v2&amp;amp;px=400" role="button" title="fastandcurious_0-1690570050719.png" alt="fastandcurious_0-1690570050719.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 28 Jul 2023 18:49:40 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Display-Odds-Ratio-Plot-in-Descending-Order/m-p/886892#M43871</guid>
      <dc:creator>fastandcurious</dc:creator>
      <dc:date>2023-07-28T18:49:40Z</dc:date>
    </item>
    <item>
      <title>Re: Display Odds Ratio Plot in Descending Order</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Display-Odds-Ratio-Plot-in-Descending-Order/m-p/887022#M43888</link>
      <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/438276"&gt;@fastandcurious&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Mark your solution as the solution, so that curious users can see it marked as solved.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Editted note:&amp;nbsp; I think you just eliminated half the value of my comment.&amp;nbsp; Yes, your topic is marked as solved, but I expected you to indicate it was your own reported use of&amp;nbsp;&amp;nbsp;&lt;SPAN&gt;&lt;EM&gt;&lt;STRONG&gt;ODDSRATIO(ORDER=DESCENDING)&lt;/STRONG&gt;&lt;/EM&gt;&amp;nbsp; as the solution, rather than this comment.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 30 Jul 2023 20:49:44 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Display-Odds-Ratio-Plot-in-Descending-Order/m-p/887022#M43888</guid>
      <dc:creator>mkeintz</dc:creator>
      <dc:date>2023-07-30T20:49:44Z</dc:date>
    </item>
    <item>
      <title>Re: Display Odds Ratio Plot in Descending Order</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Display-Odds-Ratio-Plot-in-Descending-Order/m-p/887314#M43924</link>
      <description>&lt;P&gt;Sorry about that, I was having technical issues because I opened this up through my phone. Should be fixed now &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 01 Aug 2023 13:29:39 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Display-Odds-Ratio-Plot-in-Descending-Order/m-p/887314#M43924</guid>
      <dc:creator>fastandcurious</dc:creator>
      <dc:date>2023-08-01T13:29:39Z</dc:date>
    </item>
  </channel>
</rss>

