<?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 another help in graphs in Graphics Programming</title>
    <link>https://communities.sas.com/t5/Graphics-Programming/another-help-in-graphs/m-p/819044#M22917</link>
    <description>&lt;P&gt;hi,&lt;/P&gt;&lt;P&gt;this is the graph I need to build&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="IditMaor_0-1655641271039.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/72432iFE2BCF2BA2C050B1/image-size/medium?v=v2&amp;amp;px=400" role="button" title="IditMaor_0-1655641271039.png" alt="IditMaor_0-1655641271039.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;1. how do I add several lines on the bar?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;2. how do I add min and max values as the side of the bar?&lt;/SPAN&gt;&lt;/P&gt;</description>
    <pubDate>Sun, 19 Jun 2022 12:21:22 GMT</pubDate>
    <dc:creator>IditMaor</dc:creator>
    <dc:date>2022-06-19T12:21:22Z</dc:date>
    <item>
      <title>another help in graphs</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/another-help-in-graphs/m-p/819044#M22917</link>
      <description>&lt;P&gt;hi,&lt;/P&gt;&lt;P&gt;this is the graph I need to build&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="IditMaor_0-1655641271039.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/72432iFE2BCF2BA2C050B1/image-size/medium?v=v2&amp;amp;px=400" role="button" title="IditMaor_0-1655641271039.png" alt="IditMaor_0-1655641271039.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;1. how do I add several lines on the bar?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;2. how do I add min and max values as the side of the bar?&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Sun, 19 Jun 2022 12:21:22 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/another-help-in-graphs/m-p/819044#M22917</guid>
      <dc:creator>IditMaor</dc:creator>
      <dc:date>2022-06-19T12:21:22Z</dc:date>
    </item>
    <item>
      <title>Re: another help in graphs</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/another-help-in-graphs/m-p/819067#M22918</link>
      <description>&lt;LI-SPOILER&gt;
&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/427924"&gt;@IditMaor&lt;/a&gt;&amp;nbsp;wrote:
&lt;P&gt;&lt;SPAN&gt;1. how do I add several lines on the bar?&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;2. how do I add min and max values as the side of the bar?&lt;/SPAN&gt;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;/LI-SPOILER&gt;
&lt;P&gt;What kind of several lines? Where? Where would the values of the "lines" come from.&lt;/P&gt;
&lt;P&gt;I am not sure what you mean by "min and max values as the side of the bar" at all.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Example of the data you have as a starting point is a good idea. Sometimes the way your current data is structured may not be the form needed for making nice graphs. So the first step might be to reshape your data.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Instructions here: &lt;A href="https://communities.sas.com/t5/SAS-Communities-Library/How-to-create-a-data-step-version-of-your-data-AKA-generate/ta-p/258712" target="_blank"&gt;https://communities.sas.com/t5/SAS-Communities-Library/How-to-create-a-data-step-version-of-your-data-AKA-generate/ta-p/258712&lt;/A&gt; will show how to turn an existing SAS data set into data step code that can be pasted into a forum code box using the &amp;lt;/&amp;gt; icon or attached as text to show exactly what you have and that we can test code against.&lt;/P&gt;</description>
      <pubDate>Sun, 19 Jun 2022 18:03:19 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/another-help-in-graphs/m-p/819067#M22918</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2022-06-19T18:03:19Z</dc:date>
    </item>
    <item>
      <title>Re: another help in graphs</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/another-help-in-graphs/m-p/819116#M22920</link>
      <description>&lt;P&gt;Use a HIGHLOW plot and stack by the grouping variable. This is sometimes called a "swimmer plot." Here are some fake data and an example:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;/* simulate some data */
data Have;
call streaminit(1);
do Subject = 1 to 5;
   startTime=rand("Poisson", 10);
   do stage = 'A','B','C';
      length = rand("Poisson", 7);
      EndTime = StartTime + length;
      output;
      startTime = EndTime;
   end;
end;
run;

/* create a swimmer plot for each subject; stack by stages */
proc sgplot data=Have; 
  highlow y=Subject low=StartTime high=EndTime / type=bar group=stage fill;
run;
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 20 Jun 2022 10:24:28 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/another-help-in-graphs/m-p/819116#M22920</guid>
      <dc:creator>Rick_SAS</dc:creator>
      <dc:date>2022-06-20T10:24:28Z</dc:date>
    </item>
    <item>
      <title>Re: another help in graphs</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/another-help-in-graphs/m-p/819124#M22923</link>
      <description>&lt;P&gt;thank you for your answer&lt;/P&gt;</description>
      <pubDate>Mon, 20 Jun 2022 12:16:34 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/another-help-in-graphs/m-p/819124#M22923</guid>
      <dc:creator>IditMaor</dc:creator>
      <dc:date>2022-06-20T12:16:34Z</dc:date>
    </item>
  </channel>
</rss>

