<?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: forest plot for subgroup in Graphics Programming</title>
    <link>https://communities.sas.com/t5/Graphics-Programming/forest-plot-for-subgroup/m-p/409177#M14000</link>
    <description>&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/16777"&gt;@WarrenKuhfeld&lt;/a&gt; and &lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13856"&gt;@Jay54&lt;/a&gt; have both written about this. &lt;A href="https://blogs.sas.com/content/graphicallyspeaking/2016/05/30/ctspedia-clinical-graphs-subgrouped-forest-plot/" target="_blank"&gt;Start with this blog post&lt;/A&gt;.</description>
    <pubDate>Tue, 31 Oct 2017 15:29:16 GMT</pubDate>
    <dc:creator>Rick_SAS</dc:creator>
    <dc:date>2017-10-31T15:29:16Z</dc:date>
    <item>
      <title>forest plot for subgroup</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/forest-plot-for-subgroup/m-p/409142#M13996</link>
      <description>&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;Subgroup oddsratio LCL UCL 
age&amp;lt;=65          0.68 0.61  0.76
age&amp;gt;65           0.90 0.71  1.14                                                                                              
MI               0.71 0.64  1.84
diabetes         0.71 0.62  0.82                                                                                                
hypertension     0.51 0.45  2.58                                                                                                 
asthma           0.55 0.43  0.70                                                                                               
cancer           0.61 0.54  0.69                                                                                                
hic              0.64 0.53  0.76                                                                                                 
rt               0.67 0.38  1.77                                                                                                
Overall          0.68 0.61  0.46                                                                                                 &lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Hi i have the following summary table of subgroup analysis, can someone help with a code to draw a forest plot out of this table? thanks&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 31 Oct 2017 14:41:11 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/forest-plot-for-subgroup/m-p/409142#M13996</guid>
      <dc:creator>lillymaginta</dc:creator>
      <dc:date>2017-10-31T14:41:11Z</dc:date>
    </item>
    <item>
      <title>Re: forest plot for subgroup</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/forest-plot-for-subgroup/m-p/409151#M13997</link>
      <description>&lt;P&gt;Something like this?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data have;
input Subgroup$ oddsratio LCL UCL;
datalines;
age&amp;lt;=65          0.68 0.61  0.76
age&amp;gt;65           0.90 0.71  1.14
MI               0.71 0.64  1.84
diabetes         0.71 0.62  0.82
hypertension     0.51 0.45  2.58
asthma           0.55 0.43  0.70
cancer           0.61 0.54  0.69
hic              0.64 0.53  0.76
rt               0.67 0.38  1.77
Overall          0.68 0.61  0.46
;

title "Simple Forest Plot";
ods graphics on;
proc sgplot data=have;
	scatter x=oddsratio y=Subgroup / xerrorlower=LCL xerrorupper=UCL;
run;
title;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 31 Oct 2017 14:57:19 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/forest-plot-for-subgroup/m-p/409151#M13997</guid>
      <dc:creator>PeterClemmensen</dc:creator>
      <dc:date>2017-10-31T14:57:19Z</dc:date>
    </item>
    <item>
      <title>Re: forest plot for subgroup</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/forest-plot-for-subgroup/m-p/409160#M13998</link>
      <description>&lt;P&gt;Thank you for the quick reply. I want something that looks like this with the groups listed on the left side, ignores the no of patients, and the odds ratios and confidence intervals on the right side. Also, I need the line that shows that extend from the value 1&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;IMG src="https://www.ctspedia.org/wiki/pub/CTSpedia/ClinAEGraph001/Matange_ForestPlot_Pocock.png" border="0" alt="Image result for forest plot sas" /&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 31 Oct 2017 15:08:39 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/forest-plot-for-subgroup/m-p/409160#M13998</guid>
      <dc:creator>lillymaginta</dc:creator>
      <dc:date>2017-10-31T15:08:39Z</dc:date>
    </item>
    <item>
      <title>Re: forest plot for subgroup</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/forest-plot-for-subgroup/m-p/409163#M13999</link>
      <description>To add to Draycut's answer, see the discussion and examples in the article &lt;A href="https://blogs.sas.com/content/iml/2015/08/05/coefficient-plots.html" target="_blank"&gt;"Regression coefficient plots in SAS."&lt;/A&gt;  For odds ratio plots, see the article &lt;A href="https://blogs.sas.com/content/iml/2015/07/29/or-plots-log-scale.html" target="_blank"&gt;"Odds ratio plots with a logarithmic scale in SAS"&lt;/A&gt;</description>
      <pubDate>Tue, 31 Oct 2017 15:11:06 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/forest-plot-for-subgroup/m-p/409163#M13999</guid>
      <dc:creator>Rick_SAS</dc:creator>
      <dc:date>2017-10-31T15:11:06Z</dc:date>
    </item>
    <item>
      <title>Re: forest plot for subgroup</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/forest-plot-for-subgroup/m-p/409177#M14000</link>
      <description>&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/16777"&gt;@WarrenKuhfeld&lt;/a&gt; and &lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13856"&gt;@Jay54&lt;/a&gt; have both written about this. &lt;A href="https://blogs.sas.com/content/graphicallyspeaking/2016/05/30/ctspedia-clinical-graphs-subgrouped-forest-plot/" target="_blank"&gt;Start with this blog post&lt;/A&gt;.</description>
      <pubDate>Tue, 31 Oct 2017 15:29:16 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/forest-plot-for-subgroup/m-p/409177#M14000</guid>
      <dc:creator>Rick_SAS</dc:creator>
      <dc:date>2017-10-31T15:29:16Z</dc:date>
    </item>
  </channel>
</rss>

