<?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: Grouped boxplots  (with 3 grouping vars): Related to Sample 39101: Grouped box plot with droplin in New SAS User</title>
    <link>https://communities.sas.com/t5/New-SAS-User/Grouped-boxplots-with-3-grouping-vars-Related-to-Sample-39101/m-p/505219#M1122</link>
    <description>Here is the code-it is the same as in the sample, just changed to fit my data variables.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;proc template;&lt;BR /&gt;&lt;BR /&gt;define statgraph CQM_BY_Quarter;&lt;BR /&gt;&lt;BR /&gt;begingraph;&lt;BR /&gt;&lt;BR /&gt;entrytitle 'CQM Measures for &amp;amp;clinicname (Practice ID &amp;amp;PID) at Baseline and 15 Months';&lt;BR /&gt;&lt;BR /&gt;*entryfootnote halign=left "For ALAT, ASAT and ALKPH, the Clinical Concern Level is 2 ULN" / textattrs=(size=8);&lt;BR /&gt;&lt;BR /&gt;*entryfootnote halign=left "For BILTOT, the CCL is 1.5 ULN: where ULN is the Upper Level of Normal Range" / textattrs=(size=8);&lt;BR /&gt;&lt;BR /&gt;layout overlay / cycleattrs=true yaxisopts=(label='Proportion Patients meeting tx guidelines')&lt;BR /&gt;&lt;BR /&gt;xaxisopts=(display=(ticks tickvalues line));&lt;BR /&gt;&lt;BR /&gt;boxplot x=measure y=proportionbl / discreteoffset=-0.2 boxwidth=0.2 display=(mean outliers caps fill)&lt;BR /&gt;&lt;BR /&gt;outlineattrs=graphdata1(pattern=solid) meanattrs=graphdata1&lt;BR /&gt;&lt;BR /&gt;medianattrs=graphdata1(pattern=solid) whiskerattrs=graphdata1(pattern=solid)&lt;BR /&gt;&lt;BR /&gt;outlierattrs=graphdata1 name='a' legendlabel='Baseline';&lt;BR /&gt;&lt;BR /&gt;boxplot x=measure y=proportion15 / discreteoffset= 0.2 boxwidth=0.2 display=(mean outliers caps fill)&lt;BR /&gt;&lt;BR /&gt;outlineattrs=graphdata2(pattern=solid) meanattrs=graphdata2&lt;BR /&gt;&lt;BR /&gt;medianattrs=graphdata2(pattern=solid) whiskerattrs=graphdata2(pattern=solid)&lt;BR /&gt;&lt;BR /&gt;outlierattrs=graphdata2 name='b' legendlabel='15-Month';&lt;BR /&gt;&lt;BR /&gt;discretelegend 'proportionbl' 'proportion15' / location=inside halign=right valign=top across=1;&lt;BR /&gt;&lt;BR /&gt;*referenceline y=1 / lineattrs=(pattern=dot);&lt;BR /&gt;&lt;BR /&gt;*referenceline y=1.5 / lineattrs=(pattern=dot);&lt;BR /&gt;&lt;BR /&gt;*referenceline y=2 / lineattrs=(pattern=dot);&lt;BR /&gt;&lt;BR /&gt;endlayout;&lt;BR /&gt;&lt;BR /&gt;endgraph;&lt;BR /&gt;&lt;BR /&gt;end;&lt;BR /&gt;&lt;BR /&gt;run;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;ods graphics / reset width=5in height=3in imagename= 'Fig1_1_CQM_by_Quarter';&lt;BR /&gt;&lt;BR /&gt;ODS LISTING STYLE=LISTING IMAGE_DPI=100;&lt;BR /&gt;&lt;BR /&gt;PROC SGRENDER DATA=WORK.TemplateData TEMPLATE=CQM_BY_QUARTER;&lt;BR /&gt;&lt;BR /&gt;RUN;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;For the unique markers- just markers for each practice for each measure on their respective baseline and 15month plots&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
    <pubDate>Wed, 17 Oct 2018 17:01:17 GMT</pubDate>
    <dc:creator>aebabinec</dc:creator>
    <dc:date>2018-10-17T17:01:17Z</dc:date>
    <item>
      <title>Grouped boxplots  (with 3 grouping vars): Related to Sample 39101: Grouped box plot with droplines</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Grouped-boxplots-with-3-grouping-vars-Related-to-Sample-39101/m-p/505188#M1114</link>
      <description>&lt;P&gt;Hello,&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am using the code from here:&amp;nbsp;&lt;A href="http://support.sas.com/kb/39/101.html" target="_blank"&gt;http://support.sas.com/kb/39/101.html&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;However, I need help modifying it--&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;using the sample data, supposed I had another variable denoting health-clinic. I need to produce the box plot for each clinic, so how can I modify the code to produce 50 graphs instead of one overall?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;On these graphs,&amp;nbsp;&lt;STRONG&gt;I also need a to add a reference point for that health-clinics unique value. (on the baseline plot and 15month plot, by measure (see sample data))&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;I.E. the 50 graphs (just like the one in Sample 39101) will be the exact same except for the unique markers for each practice.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Thank you!&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;SAMPLE DATA:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;PracticeID&amp;nbsp; ClinicName&amp;nbsp; Measure &amp;nbsp; ProportionBL &amp;nbsp; Proportion15&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;6001 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; hdosnonds &amp;nbsp;&amp;nbsp; aspirin &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 0.786 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 0.897&lt;/P&gt;&lt;P&gt;6002 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; hskndon &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; aspirin &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 0.638 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;nbsp; 0.579&lt;/P&gt;&lt;P&gt;6003 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;nbsp; hdonwod &amp;nbsp; &amp;nbsp; &amp;nbsp; aspirin &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 0.526 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;nbsp; 0.599&lt;/P&gt;&lt;P&gt;6001 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; hdosnonds &amp;nbsp; &amp;nbsp;bloodp &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 0.986 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 0.857&lt;/P&gt;&lt;P&gt;6002 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; hskndon &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; bloodp &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 0.238 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;nbsp; 0.903&lt;/P&gt;&lt;P&gt;6003 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;nbsp; hdonwod &amp;nbsp; &amp;nbsp; &amp;nbsp; bloodp &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 0.436 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;nbsp; 0.822&lt;/P&gt;</description>
      <pubDate>Wed, 17 Oct 2018 16:05:57 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Grouped-boxplots-with-3-grouping-vars-Related-to-Sample-39101/m-p/505188#M1114</guid>
      <dc:creator>aebabinec</dc:creator>
      <dc:date>2018-10-17T16:05:57Z</dc:date>
    </item>
    <item>
      <title>Re: Grouped boxplots  (with 3 grouping vars): Related to Sample 39101: Grouped box plot with droplin</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Grouped-boxplots-with-3-grouping-vars-Related-to-Sample-39101/m-p/505212#M1120</link>
      <description>&lt;P&gt;That example is from 2010, SGPLOT now supports box plots, but not sure they're what you want.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;An example is here:&lt;/P&gt;
&lt;P&gt;&lt;A href="https://support.sas.com/rnd/datavisualization/yourGraphs/analyticalQuick/vbox/" target="_blank"&gt;https://support.sas.com/rnd/datavisualization/yourGraphs/analyticalQuick/vbox/&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you use SGPLOT then you can just add a BY statement for the CLINIC types to create a graph for each clinic.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Or try just adding a BY statement to the SGRENDER for clinics, It does seem to support BY group processing as well.&lt;/P&gt;
&lt;P&gt;&lt;A href="https://documentation.sas.com/?docsetId=grstatproc&amp;amp;docsetTarget=n131vj4eka12zpn1iwbqufke8l4z.htm&amp;amp;docsetVersion=9.4&amp;amp;locale=en" target="_blank"&gt;https://documentation.sas.com/?docsetId=grstatproc&amp;amp;docsetTarget=n131vj4eka12zpn1iwbqufke8l4z.htm&amp;amp;docsetVersion=9.4&amp;amp;locale=en&lt;/A&gt;&lt;/P&gt;
&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/234906"&gt;@aebabinec&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;Hello,&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I am using the code from here:&amp;nbsp;&lt;A href="http://support.sas.com/kb/39/101.html" target="_blank"&gt;http://support.sas.com/kb/39/101.html&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;However, I need help modifying it--&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;using the sample data, supposed I had another variable denoting health-clinic. I need to produce the box plot for each clinic, so how can I modify the code to produce 50 graphs instead of one overall?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;On these graphs,&amp;nbsp;&lt;STRONG&gt;I also need a to add a reference point for that health-clinics unique value. (on the baseline plot and 15month plot, by measure (see sample data))&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;I.E. the 50 graphs (just like the one in Sample 39101) will be the exact same except for the unique markers for each practice.&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Thank you!&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;SAMPLE DATA:&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;PracticeID&amp;nbsp; ClinicName&amp;nbsp; Measure &amp;nbsp; ProportionBL &amp;nbsp; Proportion15&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;6001 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; hdosnonds &amp;nbsp;&amp;nbsp; aspirin &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 0.786 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 0.897&lt;/P&gt;
&lt;P&gt;6002 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; hskndon &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; aspirin &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 0.638 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;nbsp; 0.579&lt;/P&gt;
&lt;P&gt;6003 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;nbsp; hdonwod &amp;nbsp; &amp;nbsp; &amp;nbsp; aspirin &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 0.526 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;nbsp; 0.599&lt;/P&gt;
&lt;P&gt;6001 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; hdosnonds &amp;nbsp; &amp;nbsp;bloodp &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 0.986 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 0.857&lt;/P&gt;
&lt;P&gt;6002 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; hskndon &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; bloodp &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 0.238 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;nbsp; 0.903&lt;/P&gt;
&lt;P&gt;6003 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;nbsp; hdonwod &amp;nbsp; &amp;nbsp; &amp;nbsp; bloodp &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 0.436 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;nbsp; 0.822&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 17 Oct 2018 16:50:15 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Grouped-boxplots-with-3-grouping-vars-Related-to-Sample-39101/m-p/505212#M1120</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2018-10-17T16:50:15Z</dc:date>
    </item>
    <item>
      <title>Re: Grouped boxplots  (with 3 grouping vars): Related to Sample 39101: Grouped box plot with droplin</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Grouped-boxplots-with-3-grouping-vars-Related-to-Sample-39101/m-p/505213#M1121</link>
      <description>&lt;P&gt;It helps to show the code you are actually using. Referencing a source for similar code is nice but we can't tell what you may have implemented done that wasn't in the example.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;By "unique marker" do you mean that you want 50 different markers such as different shape and color?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you want 50 graphs, one per clinic then sort the data by clinic and add a by statement using the clinic variable.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Since the referenced code does not have a "baseline plot" or a "15month plot" your description is incomplete.&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;</description>
      <pubDate>Wed, 17 Oct 2018 16:57:31 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Grouped-boxplots-with-3-grouping-vars-Related-to-Sample-39101/m-p/505213#M1121</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2018-10-17T16:57:31Z</dc:date>
    </item>
    <item>
      <title>Re: Grouped boxplots  (with 3 grouping vars): Related to Sample 39101: Grouped box plot with droplin</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Grouped-boxplots-with-3-grouping-vars-Related-to-Sample-39101/m-p/505219#M1122</link>
      <description>Here is the code-it is the same as in the sample, just changed to fit my data variables.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;proc template;&lt;BR /&gt;&lt;BR /&gt;define statgraph CQM_BY_Quarter;&lt;BR /&gt;&lt;BR /&gt;begingraph;&lt;BR /&gt;&lt;BR /&gt;entrytitle 'CQM Measures for &amp;amp;clinicname (Practice ID &amp;amp;PID) at Baseline and 15 Months';&lt;BR /&gt;&lt;BR /&gt;*entryfootnote halign=left "For ALAT, ASAT and ALKPH, the Clinical Concern Level is 2 ULN" / textattrs=(size=8);&lt;BR /&gt;&lt;BR /&gt;*entryfootnote halign=left "For BILTOT, the CCL is 1.5 ULN: where ULN is the Upper Level of Normal Range" / textattrs=(size=8);&lt;BR /&gt;&lt;BR /&gt;layout overlay / cycleattrs=true yaxisopts=(label='Proportion Patients meeting tx guidelines')&lt;BR /&gt;&lt;BR /&gt;xaxisopts=(display=(ticks tickvalues line));&lt;BR /&gt;&lt;BR /&gt;boxplot x=measure y=proportionbl / discreteoffset=-0.2 boxwidth=0.2 display=(mean outliers caps fill)&lt;BR /&gt;&lt;BR /&gt;outlineattrs=graphdata1(pattern=solid) meanattrs=graphdata1&lt;BR /&gt;&lt;BR /&gt;medianattrs=graphdata1(pattern=solid) whiskerattrs=graphdata1(pattern=solid)&lt;BR /&gt;&lt;BR /&gt;outlierattrs=graphdata1 name='a' legendlabel='Baseline';&lt;BR /&gt;&lt;BR /&gt;boxplot x=measure y=proportion15 / discreteoffset= 0.2 boxwidth=0.2 display=(mean outliers caps fill)&lt;BR /&gt;&lt;BR /&gt;outlineattrs=graphdata2(pattern=solid) meanattrs=graphdata2&lt;BR /&gt;&lt;BR /&gt;medianattrs=graphdata2(pattern=solid) whiskerattrs=graphdata2(pattern=solid)&lt;BR /&gt;&lt;BR /&gt;outlierattrs=graphdata2 name='b' legendlabel='15-Month';&lt;BR /&gt;&lt;BR /&gt;discretelegend 'proportionbl' 'proportion15' / location=inside halign=right valign=top across=1;&lt;BR /&gt;&lt;BR /&gt;*referenceline y=1 / lineattrs=(pattern=dot);&lt;BR /&gt;&lt;BR /&gt;*referenceline y=1.5 / lineattrs=(pattern=dot);&lt;BR /&gt;&lt;BR /&gt;*referenceline y=2 / lineattrs=(pattern=dot);&lt;BR /&gt;&lt;BR /&gt;endlayout;&lt;BR /&gt;&lt;BR /&gt;endgraph;&lt;BR /&gt;&lt;BR /&gt;end;&lt;BR /&gt;&lt;BR /&gt;run;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;ods graphics / reset width=5in height=3in imagename= 'Fig1_1_CQM_by_Quarter';&lt;BR /&gt;&lt;BR /&gt;ODS LISTING STYLE=LISTING IMAGE_DPI=100;&lt;BR /&gt;&lt;BR /&gt;PROC SGRENDER DATA=WORK.TemplateData TEMPLATE=CQM_BY_QUARTER;&lt;BR /&gt;&lt;BR /&gt;RUN;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;For the unique markers- just markers for each practice for each measure on their respective baseline and 15month plots&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Wed, 17 Oct 2018 17:01:17 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Grouped-boxplots-with-3-grouping-vars-Related-to-Sample-39101/m-p/505219#M1122</guid>
      <dc:creator>aebabinec</dc:creator>
      <dc:date>2018-10-17T17:01:17Z</dc:date>
    </item>
    <item>
      <title>Re: Grouped boxplots  (with 3 grouping vars): Related to Sample 39101: Grouped box plot with droplin</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Grouped-boxplots-with-3-grouping-vars-Related-to-Sample-39101/m-p/505350#M1144</link>
      <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13879"&gt;@Reeza&lt;/a&gt;&amp;nbsp;when I add the BY statement it only plots that clinics value (so I have one point for baseline and then one for 15 month)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;any ideas? tahnk you for your help!&lt;/P&gt;</description>
      <pubDate>Wed, 17 Oct 2018 21:06:18 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Grouped-boxplots-with-3-grouping-vars-Related-to-Sample-39101/m-p/505350#M1144</guid>
      <dc:creator>aebabinec</dc:creator>
      <dc:date>2018-10-17T21:06:18Z</dc:date>
    </item>
    <item>
      <title>Re: Grouped boxplots  (with 3 grouping vars): Related to Sample 39101: Grouped box plot with droplin</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Grouped-boxplots-with-3-grouping-vars-Related-to-Sample-39101/m-p/505374#M1149</link>
      <description>&lt;P&gt;Yes, that's what happens when you say you want '50 graphs', ie one for each clinic. If that's not what you want, you need to be more specific.&lt;/P&gt;</description>
      <pubDate>Wed, 17 Oct 2018 21:59:36 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Grouped-boxplots-with-3-grouping-vars-Related-to-Sample-39101/m-p/505374#M1149</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2018-10-17T21:59:36Z</dc:date>
    </item>
  </channel>
</rss>

