<?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 To maintain Gap between vertical bars in scatter series plot using sgplot without changing thickness in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/To-maintain-Gap-between-vertical-bars-in-scatter-series-plot/m-p/931879#M366615</link>
    <description>&lt;P&gt;I have scatter series plot using proc SGPLOT with different timepoints on each page.&lt;BR /&gt;Page having 5 timepoints on x axis have required gap between errorbars of two treatments with clusterwidth = 0.2 but other page having 8 timepoints have comparatively small gap between errorbars with same clusterwidth value.&lt;BR /&gt;Upon increasing clusterwidth value, I am getting required gap but along with gap, thickness of errobars also increased. I want to change only the gap without changing thickness. I have tried&amp;nbsp; errorbarattrs = (thickness = x) with and without transparence = x option but with use of these options clusterwidth = n seems not working.&amp;nbsp;&lt;BR /&gt;Any solution will be most welcome.&lt;/P&gt;</description>
    <pubDate>Wed, 12 Jun 2024 11:12:12 GMT</pubDate>
    <dc:creator>Chetan302</dc:creator>
    <dc:date>2024-06-12T11:12:12Z</dc:date>
    <item>
      <title>To maintain Gap between vertical bars in scatter series plot using sgplot without changing thickness</title>
      <link>https://communities.sas.com/t5/SAS-Programming/To-maintain-Gap-between-vertical-bars-in-scatter-series-plot/m-p/931879#M366615</link>
      <description>&lt;P&gt;I have scatter series plot using proc SGPLOT with different timepoints on each page.&lt;BR /&gt;Page having 5 timepoints on x axis have required gap between errorbars of two treatments with clusterwidth = 0.2 but other page having 8 timepoints have comparatively small gap between errorbars with same clusterwidth value.&lt;BR /&gt;Upon increasing clusterwidth value, I am getting required gap but along with gap, thickness of errobars also increased. I want to change only the gap without changing thickness. I have tried&amp;nbsp; errorbarattrs = (thickness = x) with and without transparence = x option but with use of these options clusterwidth = n seems not working.&amp;nbsp;&lt;BR /&gt;Any solution will be most welcome.&lt;/P&gt;</description>
      <pubDate>Wed, 12 Jun 2024 11:12:12 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/To-maintain-Gap-between-vertical-bars-in-scatter-series-plot/m-p/931879#M366615</guid>
      <dc:creator>Chetan302</dc:creator>
      <dc:date>2024-06-12T11:12:12Z</dc:date>
    </item>
    <item>
      <title>Re: To maintain Gap between vertical bars in scatter series plot using sgplot without changing thick</title>
      <link>https://communities.sas.com/t5/SAS-Programming/To-maintain-Gap-between-vertical-bars-in-scatter-series-plot/m-p/931913#M366631</link>
      <description>&lt;P&gt;Complete Sgplot code please. Plus data if possible, or modify your code to use a supplied data set like one of the SGPLOT examples.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 13 Jun 2024 13:56:59 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/To-maintain-Gap-between-vertical-bars-in-scatter-series-plot/m-p/931913#M366631</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2024-06-13T13:56:59Z</dc:date>
    </item>
    <item>
      <title>Re: To maintain Gap between vertical bars in scatter series plot using sgplot without changing thick</title>
      <link>https://communities.sas.com/t5/SAS-Programming/To-maintain-Gap-between-vertical-bars-in-scatter-series-plot/m-p/932085#M366683</link>
      <description>&lt;P&gt;Here is the sample code:-&lt;/P&gt;&lt;DIV&gt;proc sgplot data= &amp;amp;data DATTRMAP=Attrs&amp;nbsp; ;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; by paramn parameter;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; where paramn = &amp;amp;i ;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp;styleattrs&amp;nbsp; datacontrastcolors = (red blue) datalinepatterns = (solid dash )&amp;nbsp; datasymbols = (circle plus)&amp;nbsp; ;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;scatter x=visn y=&amp;amp;ymean / group=TRT01p ATTRID=TRT01p yerrorlower=&amp;amp;ylower yerrorupper=&amp;amp;yupper groupdisplay=cluster clusterwidth=0.2 name="s1" ;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;series x=visn y=&amp;amp;ymean / group=TRT01p ATTRID=TRT01p lineattrs=(thickness=1 ) name="s2"&amp;nbsp; ;&amp;nbsp;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; xaxistable _N / x=visn class=trt01p location=inside&amp;nbsp; colorgroup=trt01p ATTRID=trt01p separator ;&amp;nbsp;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;xaxis values = (0,30,180,210,360) valuesdisplay = ("Baseline" "Day 30" "Day 180" "Day 210" "Day 360")&amp;nbsp;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;valueattrs=(size=8) fitpolicy = rotate label="Visit" offsetmin = 0.045 offsetmax = 0.045 type = linear;&amp;nbsp;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;%if &amp;amp;i = 1 %then %do;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;scatter x=visn y=&amp;amp;ymean / group=TRT01p ATTRID=TRT01p yerrorlower=&amp;amp;ylower yerrorupper=&amp;amp;yupper groupdisplay=cluster clusterwidth=0.35 name="s1" ;&amp;nbsp;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;xaxis values = (0,14,30,90,180,210,270,360)&amp;nbsp;&amp;nbsp; valuesdisplay = ("Baseline" "Day 14" "Day 30" "Day 90" "Day 180" "Day 210" "Day 270" "Day 360")&amp;nbsp; valueattrs=(size=8) fitpolicy = rotate&amp;nbsp; label="Visit" offsetmin = 0.045 offsetmax = 0.045 type = linear;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;%end;&amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; run;&amp;nbsp; &amp;nbsp;&lt;/DIV&gt;</description>
      <pubDate>Thu, 13 Jun 2024 05:26:02 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/To-maintain-Gap-between-vertical-bars-in-scatter-series-plot/m-p/932085#M366683</guid>
      <dc:creator>Chetan302</dc:creator>
      <dc:date>2024-06-13T05:26:02Z</dc:date>
    </item>
  </channel>
</rss>

