<?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: Proc gbarline. Only one bar? in ODS and Base Reporting</title>
    <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Proc-gbarline-Only-one-bar/m-p/1058#M507</link>
    <description>What I want is two &lt;U&gt;series&lt;/U&gt; of bars (your second option). I'll be glad if there is a solution to that problem. &lt;BR /&gt;
&lt;BR /&gt;
Thanx for help!</description>
    <pubDate>Tue, 15 Aug 2006 12:13:27 GMT</pubDate>
    <dc:creator>deleted_user</dc:creator>
    <dc:date>2006-08-15T12:13:27Z</dc:date>
    <item>
      <title>Proc gbarline. Only one bar?</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Proc-gbarline-Only-one-bar/m-p/1055#M504</link>
      <description>I want to make a bar line chart with &lt;U&gt;two&lt;/U&gt; bars. Does anybody know if Proc Gbarline can manage this? &lt;BR /&gt;
It seems like Proc Gbarline can make these kind of charts with only &lt;U&gt;one&lt;/U&gt; bar.&lt;BR /&gt;
&lt;BR /&gt;
Thanx for help.</description>
      <pubDate>Mon, 17 Jul 2006 13:48:51 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Proc-gbarline-Only-one-bar/m-p/1055#M504</guid>
      <dc:creator>deleted_user</dc:creator>
      <dc:date>2006-07-17T13:48:51Z</dc:date>
    </item>
    <item>
      <title>Re: Proc gbarline. Only one bar?</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Proc-gbarline-Only-one-bar/m-p/1056#M505</link>
      <description>A SAS/GRAPH expert in Technical Support told me:&lt;BR /&gt;
&lt;BR /&gt;
For the most part, the number of bars produced by PROC GBARLINE depends upon your input data and the value of the LEVELS= option on the BAR statement of PROC GBARLINE.  The following code demonstrates how to produce output from PROC GBARLINE that has 5 bars:&lt;BR /&gt;
[pre]&lt;BR /&gt;
 Goptions&lt;BR /&gt;
  Reset   = All&lt;BR /&gt;
  Device  = WIN&lt;BR /&gt;
  Cback   = Beige&lt;BR /&gt;
 ;&lt;BR /&gt;
&lt;BR /&gt;
 data nyse;&lt;BR /&gt;
&lt;BR /&gt;
   informat DAY date9.;&lt;BR /&gt;
   format   DAY date5.;&lt;BR /&gt;
   &lt;BR /&gt;
   input DAY $ HIGH LOW CLOSE VOLUME;&lt;BR /&gt;
&lt;BR /&gt;
   volume = volume/1000;&lt;BR /&gt;
&lt;BR /&gt;
   cards;&lt;BR /&gt;
02AUG2002 10478.76 10346.24 10426.91 1908809&lt;BR /&gt;
03AUG2002 11042.92 10298.44 10274.65 1807543&lt;BR /&gt;
04AUG2002 10498.22 10400.31 10456.43 1500656&lt;BR /&gt;
05AUG2002 10694.47 10636.32 10762.98 1498403&lt;BR /&gt;
06AUG2002 10801.12 10695.13 10759.48 1695602&lt;BR /&gt;
;&lt;BR /&gt;
 run;&lt;BR /&gt;
&lt;BR /&gt;
 title1 h=2 f='Arial/bo' "NYSE Closing Price and Volume By Day";&lt;BR /&gt;
 footnote h=1.5 f='Arial/bo' "Release is &amp;amp;sysvlong";&lt;BR /&gt;
&lt;BR /&gt;
 symbol1  f=marker v=U c=green h=1;&lt;BR /&gt;
 pattern1 v=solid  c=libg; &lt;BR /&gt;
&lt;BR /&gt;
 proc gbarline data=nyse;&lt;BR /&gt;
&lt;BR /&gt;
   bar day / sumvar=volume levels=5;&lt;BR /&gt;
&lt;BR /&gt;
   plot / sumvar=close;&lt;BR /&gt;
 run;&lt;BR /&gt;
 quit; &lt;BR /&gt;
[/pre]&lt;BR /&gt;
&lt;BR /&gt;
-- David Kelley, SAS</description>
      <pubDate>Thu, 20 Jul 2006 14:03:44 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Proc-gbarline-Only-one-bar/m-p/1056#M505</guid>
      <dc:creator>David_SAS</dc:creator>
      <dc:date>2006-07-20T14:03:44Z</dc:date>
    </item>
    <item>
      <title>Re: Proc gbarline. Only one bar?</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Proc-gbarline-Only-one-bar/m-p/1057#M506</link>
      <description>I am not sure to understand your problem properly :&lt;BR /&gt;
- does your GBARLINE proc only produce ONE and only one bar (then the previous answer should fix ; you can either use the DISCRETE option in the BAR statement to get one bar per value) ;&lt;BR /&gt;
- or do you want two SERIES of bars on the same graph, in an overlayed kind of graph ?</description>
      <pubDate>Thu, 27 Jul 2006 09:28:43 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Proc-gbarline-Only-one-bar/m-p/1057#M506</guid>
      <dc:creator>Olivier</dc:creator>
      <dc:date>2006-07-27T09:28:43Z</dc:date>
    </item>
    <item>
      <title>Re: Proc gbarline. Only one bar?</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Proc-gbarline-Only-one-bar/m-p/1058#M507</link>
      <description>What I want is two &lt;U&gt;series&lt;/U&gt; of bars (your second option). I'll be glad if there is a solution to that problem. &lt;BR /&gt;
&lt;BR /&gt;
Thanx for help!</description>
      <pubDate>Tue, 15 Aug 2006 12:13:27 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Proc-gbarline-Only-one-bar/m-p/1058#M507</guid>
      <dc:creator>deleted_user</dc:creator>
      <dc:date>2006-08-15T12:13:27Z</dc:date>
    </item>
  </channel>
</rss>

