<?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 Unadjusted and Adjusted OR Plots in New SAS User</title>
    <link>https://communities.sas.com/t5/New-SAS-User/Unadjusted-and-Adjusted-OR-Plots/m-p/539776#M7123</link>
    <description>&lt;P&gt;Hello!&lt;/P&gt;&lt;P&gt;I am trying create a plot that includes both my unadjusted odds ratios and my adjusted odds ratios, both with 95% CI. I was about to create a plot of only my adjusted, but I do not know how to combine them. The unadjusted odds ratios were created in individual models. I am trying to create something that looks similar to this below!&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;&lt;IMG src="https://www.researchgate.net/profile/Renee_Grenon/publication/259354575/figure/fig1/AS:202540412084226@1425300805382/Unadjusted-and-adjusted-odds-ratios-from-logistic-regression.png" border="0" alt="Image result for odds ratio plot adjusted unadjusted" /&gt;&lt;/P&gt;</description>
    <pubDate>Fri, 01 Mar 2019 21:48:46 GMT</pubDate>
    <dc:creator>vnoblet</dc:creator>
    <dc:date>2019-03-01T21:48:46Z</dc:date>
    <item>
      <title>Unadjusted and Adjusted OR Plots</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Unadjusted-and-Adjusted-OR-Plots/m-p/539776#M7123</link>
      <description>&lt;P&gt;Hello!&lt;/P&gt;&lt;P&gt;I am trying create a plot that includes both my unadjusted odds ratios and my adjusted odds ratios, both with 95% CI. I was about to create a plot of only my adjusted, but I do not know how to combine them. The unadjusted odds ratios were created in individual models. I am trying to create something that looks similar to this below!&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;&lt;IMG src="https://www.researchgate.net/profile/Renee_Grenon/publication/259354575/figure/fig1/AS:202540412084226@1425300805382/Unadjusted-and-adjusted-odds-ratios-from-logistic-regression.png" border="0" alt="Image result for odds ratio plot adjusted unadjusted" /&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 01 Mar 2019 21:48:46 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Unadjusted-and-Adjusted-OR-Plots/m-p/539776#M7123</guid>
      <dc:creator>vnoblet</dc:creator>
      <dc:date>2019-03-01T21:48:46Z</dc:date>
    </item>
    <item>
      <title>Re: Unadjusted and Adjusted OR Plots</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Unadjusted-and-Adjusted-OR-Plots/m-p/539797#M7128</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/264786"&gt;@vnoblet&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;Hello!&lt;/P&gt;
&lt;P&gt;I am trying create a plot that includes both my unadjusted odds ratios and my adjusted odds ratios, both with 95% CI. I was about to create a plot of only my adjusted, but I do not know how to combine them. The unadjusted odds ratios were created in individual models. I am trying to create something that looks similar to this below!&lt;/P&gt;
&lt;P&gt;Thanks&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Example(s) of your existing data would likely help get a better solution and let us see what restructure may be most useful.&lt;/P&gt;
&lt;P&gt;Likely you will need to make sure that your limits and ratios are in output data sets so they can be best combined. It isn't clear if your summaries are in separate data sets yet.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;This link:&lt;/P&gt;
&lt;P&gt;&lt;A href="http://support.sas.com/kb/42/867.html" target="_blank"&gt;http://support.sas.com/kb/42/867.html&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;has one fully worked example with data, code and visual results of something similar to what you are doing, though a bit more complicated.&lt;/P&gt;
&lt;P&gt;The addition of your reference line would be pretty simple once you get the basic structure down.&lt;/P&gt;</description>
      <pubDate>Fri, 01 Mar 2019 23:07:32 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Unadjusted-and-Adjusted-OR-Plots/m-p/539797#M7128</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2019-03-01T23:07:32Z</dc:date>
    </item>
    <item>
      <title>Re: Unadjusted and Adjusted OR Plots</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Unadjusted-and-Adjusted-OR-Plots/m-p/539850#M7136</link>
      <description>&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc summary data=sashelp.heart nway;
class status sex ;
var weight;
output out=temp mean=mean lclm=low uclm=upper;
run;

proc sgplot data=temp;
scatter x=mean y=status/ group=sex groupdisplay=cluster clusterwidth=0.4
 xerrorlower=low  xerrorupper=upper markerattrs=(symbol=squarefilled);
 refline 150 / axis=x;
 yaxis  colorbands=even;
run;

&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Sat, 02 Mar 2019 11:25:00 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Unadjusted-and-Adjusted-OR-Plots/m-p/539850#M7136</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2019-03-02T11:25:00Z</dc:date>
    </item>
  </channel>
</rss>

