<?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 SG PLOT in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/SG-PLOT/m-p/824387#M325581</link>
    <description>&lt;P&gt;Hi,&amp;nbsp;In my current sgplot the cap is not appearing&amp;nbsp; for the second subject(one marked in yellow). Is there any method to resolve it or can it present in different way (with a star symbol).Thank you&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="MicrosoftTeams-image (2).png" style="width: 999px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/73525iFF7B04DACC198476/image-size/large?v=v2&amp;amp;px=999" role="button" title="MicrosoftTeams-image (2).png" alt="MicrosoftTeams-image (2).png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
    <pubDate>Wed, 20 Jul 2022 15:51:11 GMT</pubDate>
    <dc:creator>rosejolly</dc:creator>
    <dc:date>2022-07-20T15:51:11Z</dc:date>
    <item>
      <title>SG PLOT</title>
      <link>https://communities.sas.com/t5/SAS-Programming/SG-PLOT/m-p/824387#M325581</link>
      <description>&lt;P&gt;Hi,&amp;nbsp;In my current sgplot the cap is not appearing&amp;nbsp; for the second subject(one marked in yellow). Is there any method to resolve it or can it present in different way (with a star symbol).Thank you&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="MicrosoftTeams-image (2).png" style="width: 999px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/73525iFF7B04DACC198476/image-size/large?v=v2&amp;amp;px=999" role="button" title="MicrosoftTeams-image (2).png" alt="MicrosoftTeams-image (2).png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 20 Jul 2022 15:51:11 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/SG-PLOT/m-p/824387#M325581</guid>
      <dc:creator>rosejolly</dc:creator>
      <dc:date>2022-07-20T15:51:11Z</dc:date>
    </item>
    <item>
      <title>Re: SG PLOT</title>
      <link>https://communities.sas.com/t5/SAS-Programming/SG-PLOT/m-p/824402#M325584</link>
      <description>&lt;P&gt;Complete code and some example data would help. Copy the code from your editor, on the forum open a text box using the &amp;lt;/&amp;gt; icon and paste the code.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Without knowing the current options you are using for the graph we will spend a lot of time guessing what you have and some suggestions may not work because they conflict with other choices made in your code.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I suspect that the value for that arrow is just too small. The length of the "cap" could imply a value not present in your data as it has a minimum size needed to display.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Edit:&lt;/P&gt;
&lt;P&gt;I am guessing that you did a HIGHLOW plot. Depending on your settings for graphic area this may explain what happens:&lt;/P&gt;
&lt;PRE&gt;data plot;
   do y=1 to 25;
      low=0;
      if y&amp;lt; 5 then high=y/5;
      else high=y;
      output;
   end;
run;

proc sgplot data=plot;
   highlow y=y low=low high=high /
      barwidth=1
      highcap=filledarrow
      type=bar
   ;
run;
&lt;/PRE&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="SGPlot6.png" style="width: 640px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/73554i1042AD20BE970739/image-size/large?v=v2&amp;amp;px=999" role="button" title="SGPlot6.png" alt="SGPlot6.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;Note that a "small" value for high, in this case 0.6 for Y=3, allows just the point but that smaller values of 0.4 and 0.2 there is not sufficient space for the entire triangle of the arrow so none is shown.&lt;/P&gt;</description>
      <pubDate>Wed, 20 Jul 2022 22:16:51 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/SG-PLOT/m-p/824402#M325584</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2022-07-20T22:16:51Z</dc:date>
    </item>
  </channel>
</rss>

