<?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: sgpanel vbar graph with tabular data in Graphics Programming</title>
    <link>https://communities.sas.com/t5/Graphics-Programming/sgpanel-vbar-graph-with-tabular-data/m-p/74092#M2719</link>
    <description>Hi Dan,&lt;BR /&gt;
            Thanks for the solution. Its works great.&lt;BR /&gt;
&lt;BR /&gt;
            I appreciate all your help.&lt;BR /&gt;
&lt;BR /&gt;
Regards,&lt;BR /&gt;
&lt;BR /&gt;
Amit</description>
    <pubDate>Fri, 02 Oct 2009 16:16:42 GMT</pubDate>
    <dc:creator>AmitKB</dc:creator>
    <dc:date>2009-10-02T16:16:42Z</dc:date>
    <item>
      <title>sgpanel vbar graph with tabular data</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/sgpanel-vbar-graph-with-tabular-data/m-p/74090#M2717</link>
      <description>Hi all,&lt;BR /&gt;
          I want to create a sgpanel vbar graph  by region, where the sas dataset is in following format. I dont know how to assign the response in the vbar.&lt;BR /&gt;
&lt;BR /&gt;
Region qtr1 qtr2 qtr3 qtr4   &amp;lt;-- variable names&lt;BR /&gt;
East    20   10  30   40&lt;BR /&gt;
West   10   40  30   10&lt;BR /&gt;
North   50   20  60   30&lt;BR /&gt;
South  30   10  20   60&lt;BR /&gt;
&lt;BR /&gt;
Thanks for all your help.&lt;BR /&gt;
&lt;BR /&gt;
Regards,&lt;BR /&gt;
&lt;BR /&gt;
Amit</description>
      <pubDate>Thu, 01 Oct 2009 22:39:31 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/sgpanel-vbar-graph-with-tabular-data/m-p/74090#M2717</guid>
      <dc:creator>AmitKB</dc:creator>
      <dc:date>2009-10-01T22:39:31Z</dc:date>
    </item>
    <item>
      <title>Re: sgpanel vbar graph with tabular data</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/sgpanel-vbar-graph-with-tabular-data/m-p/74091#M2718</link>
      <description>You just need to transpose your data.  Here's a simple example using your posted data:&lt;BR /&gt;
&lt;BR /&gt;
data test;&lt;BR /&gt;
input region $ qtr1 qtr2 qtr3 qtr4;&lt;BR /&gt;
cards;&lt;BR /&gt;
East 20 10 30 40&lt;BR /&gt;
West 10 40 30 10&lt;BR /&gt;
North 50 20 60 30&lt;BR /&gt;
South 30 10 20 60&lt;BR /&gt;
;&lt;BR /&gt;
run;&lt;BR /&gt;
&lt;BR /&gt;
proc transpose data=test out=transposed;&lt;BR /&gt;
by region notsorted;&lt;BR /&gt;
var qtr1 qtr2 qtr3 qtr4;&lt;BR /&gt;
run;&lt;BR /&gt;
&lt;BR /&gt;
proc sgpanel data=transposed;&lt;BR /&gt;
panelby region;&lt;BR /&gt;
vbar _name_ / response=col1;&lt;BR /&gt;
run;</description>
      <pubDate>Fri, 02 Oct 2009 01:51:05 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/sgpanel-vbar-graph-with-tabular-data/m-p/74091#M2718</guid>
      <dc:creator>DanH_sas</dc:creator>
      <dc:date>2009-10-02T01:51:05Z</dc:date>
    </item>
    <item>
      <title>Re: sgpanel vbar graph with tabular data</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/sgpanel-vbar-graph-with-tabular-data/m-p/74092#M2719</link>
      <description>Hi Dan,&lt;BR /&gt;
            Thanks for the solution. Its works great.&lt;BR /&gt;
&lt;BR /&gt;
            I appreciate all your help.&lt;BR /&gt;
&lt;BR /&gt;
Regards,&lt;BR /&gt;
&lt;BR /&gt;
Amit</description>
      <pubDate>Fri, 02 Oct 2009 16:16:42 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/sgpanel-vbar-graph-with-tabular-data/m-p/74092#M2719</guid>
      <dc:creator>AmitKB</dc:creator>
      <dc:date>2009-10-02T16:16:42Z</dc:date>
    </item>
  </channel>
</rss>

