<?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: how to make errorbar horizontal lines small in scatter plot in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/how-to-make-errorbar-horizontal-lines-small-in-scatter-plot/m-p/655572#M196683</link>
    <description>&lt;P&gt;Its length of serif which i want to make it small as i believe i can make changes to thickness by using attributes errorbarattrs.I have also posted my code which i am creating in proc template and then calling that template using proc sgrender in my final code&lt;/P&gt;</description>
    <pubDate>Tue, 09 Jun 2020 16:04:31 GMT</pubDate>
    <dc:creator>jeetendersinghc</dc:creator>
    <dc:date>2020-06-09T16:04:31Z</dc:date>
    <item>
      <title>how to make errorbar horizontal lines small in scatter plot</title>
      <link>https://communities.sas.com/t5/SAS-Programming/how-to-make-errorbar-horizontal-lines-small-in-scatter-plot/m-p/655556#M196673</link>
      <description>&lt;P&gt;Could anyone please help me to make the &lt;STRONG&gt;horizontal line&lt;/STRONG&gt; of errorbar lines drawn in scatter plot small in size. Here is the picture of those errorbar lines which i want to make it small&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="jeetendersinghc_0-1591715830454.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/41593i50F1840AE53D7D8C/image-size/medium?v=v2&amp;amp;px=400" role="button" title="jeetendersinghc_0-1591715830454.png" alt="jeetendersinghc_0-1591715830454.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I can control the thickness of line using errorbarattrs=(thickness=2) but at the same time i also want to keep the &lt;STRONG&gt;horizontal line &lt;/STRONG&gt;of those error bar lines small to keep my graph clean.&lt;/P&gt;&lt;P&gt;Or If there is any other symbol option i can try to keep those horizontal line small will also work.&lt;/P&gt;&lt;P&gt;I searched a lot but i dont find any reference to related to make these lines small.&lt;/P&gt;&lt;P&gt;Any kind of suggestion will help me.&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Jeetender&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 09 Jun 2020 15:24:31 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/how-to-make-errorbar-horizontal-lines-small-in-scatter-plot/m-p/655556#M196673</guid>
      <dc:creator>jeetendersinghc</dc:creator>
      <dc:date>2020-06-09T15:24:31Z</dc:date>
    </item>
    <item>
      <title>Re: how to make errorbar horizontal lines small in scatter plot</title>
      <link>https://communities.sas.com/t5/SAS-Programming/how-to-make-errorbar-horizontal-lines-small-in-scatter-plot/m-p/655567#M196680</link>
      <description>&lt;P&gt;"Small" in which attribute? The length of the serif? The thickness of the serif?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;It may also help to provide the code you are currently using. Believe it or not there is more than one way to add "error bars" and it may help to know all of the options you are using.&lt;/P&gt;</description>
      <pubDate>Tue, 09 Jun 2020 15:55:02 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/how-to-make-errorbar-horizontal-lines-small-in-scatter-plot/m-p/655567#M196680</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2020-06-09T15:55:02Z</dc:date>
    </item>
    <item>
      <title>Re: how to make errorbar horizontal lines small in scatter plot</title>
      <link>https://communities.sas.com/t5/SAS-Programming/how-to-make-errorbar-horizontal-lines-small-in-scatter-plot/m-p/655569#M196681</link>
      <description>&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc template;
define statgraph  plotout;
begingraph;
entrytitle "Meanstd plot";
	  layout overlay/ xaxisopts=(label="Time (h)"
								 display=(tickvalues ticks label)
								 tickvalueattrs=(size=8pt weight=bold) 
								 linearopts=(viewmin=1 viewmax=160
								 tickvaluesequence=(start=0 end=160
								 increment=24))
								 labelattrs=(size=11 weight=bold))
	 				  yaxisopts=(label="Mean..."
								 display=(tickvalues ticks label)
								 tickvalueattrs=(size=8pt weight=bold) 
								 linearopts=(viewmin=0 viewmax=1400
								 tickvaluesequence=(start=0 end=1400
								 increment=200))
								 labelattrs=(size=11 weight=bold));
	 				  scatterplot x=pctptnum y=mean / group=trt01an index=trt01an yerrorlower=eval(mean+ up*std) markerattrs=(size=15 weight=bold) errorBarAttrs=(thickness=2 )
								  
 								 ;

					  seriesplot x=pctptnum y=mean / group=trt01an lineattrs=(pattern=1 thickness=4) name="TRT"; 
		 			  discretelegend "TRT" / title="Treatment:" displayclipped=true
								 	 autoalign=(BOTTOM) location=OUTSIDE
									 border=off titleattrs=(weight=bold);

	endlayout;
 				

 endgraph;
end;
run; &lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 09 Jun 2020 16:01:22 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/how-to-make-errorbar-horizontal-lines-small-in-scatter-plot/m-p/655569#M196681</guid>
      <dc:creator>jeetendersinghc</dc:creator>
      <dc:date>2020-06-09T16:01:22Z</dc:date>
    </item>
    <item>
      <title>Re: how to make errorbar horizontal lines small in scatter plot</title>
      <link>https://communities.sas.com/t5/SAS-Programming/how-to-make-errorbar-horizontal-lines-small-in-scatter-plot/m-p/655572#M196683</link>
      <description>&lt;P&gt;Its length of serif which i want to make it small as i believe i can make changes to thickness by using attributes errorbarattrs.I have also posted my code which i am creating in proc template and then calling that template using proc sgrender in my final code&lt;/P&gt;</description>
      <pubDate>Tue, 09 Jun 2020 16:04:31 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/how-to-make-errorbar-horizontal-lines-small-in-scatter-plot/m-p/655572#M196683</guid>
      <dc:creator>jeetendersinghc</dc:creator>
      <dc:date>2020-06-09T16:04:31Z</dc:date>
    </item>
  </channel>
</rss>

