<?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 Stacked Bar Graph with subgroup in New SAS User</title>
    <link>https://communities.sas.com/t5/New-SAS-User/Stacked-Bar-Graph-with-subgroup/m-p/608648#M17720</link>
    <description />
    <pubDate>Mon, 02 Dec 2019 11:14:44 GMT</pubDate>
    <dc:creator>Rajeshthangam</dc:creator>
    <dc:date>2019-12-02T11:14:44Z</dc:date>
    <item>
      <title>Stacked Bar Graph with subgroup</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Stacked-Bar-Graph-with-subgroup/m-p/608648#M17720</link>
      <description />
      <pubDate>Mon, 02 Dec 2019 11:14:44 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Stacked-Bar-Graph-with-subgroup/m-p/608648#M17720</guid>
      <dc:creator>Rajeshthangam</dc:creator>
      <dc:date>2019-12-02T11:14:44Z</dc:date>
    </item>
    <item>
      <title>Re: Stacked Bar Graph with subgroup</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Stacked-Bar-Graph-with-subgroup/m-p/608655#M17722</link>
      <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/301076"&gt;@Rajeshthangam&lt;/a&gt;&amp;nbsp;Hi and welcome to the SAS Community &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;What version of SAS are you in?&lt;/P&gt;</description>
      <pubDate>Mon, 02 Dec 2019 10:18:16 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Stacked-Bar-Graph-with-subgroup/m-p/608655#M17722</guid>
      <dc:creator>PeterClemmensen</dc:creator>
      <dc:date>2019-12-02T10:18:16Z</dc:date>
    </item>
    <item>
      <title>Re: Stacked Bar Graph with subgroup</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Stacked-Bar-Graph-with-subgroup/m-p/608656#M17723</link>
      <description>I am using SAS University edition..</description>
      <pubDate>Mon, 02 Dec 2019 10:22:34 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Stacked-Bar-Graph-with-subgroup/m-p/608656#M17723</guid>
      <dc:creator>Rajeshthangam</dc:creator>
      <dc:date>2019-12-02T10:22:34Z</dc:date>
    </item>
    <item>
      <title>Re: Stacked Bar Graph with subgroup</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Stacked-Bar-Graph-with-subgroup/m-p/608659#M17724</link>
      <description>&lt;P&gt;This gets you some of the way at least&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc freq data=have noprint;
    tables year*Group_Y_Name*Rankle / out=temp outpct;
run;

data graph;
    set temp;
    pct_row=round(pct_row)/100;
run;

title 'Group Y Portfolio (2007 / 2008 / 2009 / 2010)';
proc sgpanel data=graph;
    styleattrs datacolors=(CXFFDAB9 CXADD8E6 CXFAFAD2);
    panelby Group_Y_Name / layout=columnlattice novarname noborder colheaderpos=bottom;
    vbar Year / response=pct_row group=Rankle stat=sum seglabel seglabelformat=percent.;
    colaxis display=(nolabel);
    rowaxis display=(nolabel);
    keylegend / noborder title='';
run;
title;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 02 Dec 2019 11:24:21 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Stacked-Bar-Graph-with-subgroup/m-p/608659#M17724</guid>
      <dc:creator>PeterClemmensen</dc:creator>
      <dc:date>2019-12-02T11:24:21Z</dc:date>
    </item>
    <item>
      <title>Re: Stacked Bar Graph with subgroup</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Stacked-Bar-Graph-with-subgroup/m-p/608665#M17725</link>
      <description>&lt;P&gt;It works fine. Thank you so much.&lt;/P&gt;&lt;P&gt;Is there anyway to acheive the same results in GCHART?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 02 Dec 2019 10:56:52 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Stacked-Bar-Graph-with-subgroup/m-p/608665#M17725</guid>
      <dc:creator>Rajeshthangam</dc:creator>
      <dc:date>2019-12-02T10:56:52Z</dc:date>
    </item>
    <item>
      <title>Re: Stacked Bar Graph with subgroup</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Stacked-Bar-Graph-with-subgroup/m-p/608669#M17726</link>
      <description>&lt;P&gt;You're welcome &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt; Probably. I'm no expert in PROC GCHART. Also, the SG Procedures are newer and better documented.&lt;/P&gt;</description>
      <pubDate>Mon, 02 Dec 2019 11:06:06 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Stacked-Bar-Graph-with-subgroup/m-p/608669#M17726</guid>
      <dc:creator>PeterClemmensen</dc:creator>
      <dc:date>2019-12-02T11:06:06Z</dc:date>
    </item>
    <item>
      <title>Re: Stacked Bar Graph with subgroup</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Stacked-Bar-Graph-with-subgroup/m-p/608672#M17728</link>
      <description>&lt;P&gt;Thank you so much for giving this logic. But, Can you please remove the sample data and expected output image given?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 02 Dec 2019 11:23:27 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Stacked-Bar-Graph-with-subgroup/m-p/608672#M17728</guid>
      <dc:creator>Rajeshthangam</dc:creator>
      <dc:date>2019-12-02T11:23:27Z</dc:date>
    </item>
    <item>
      <title>Re: Stacked Bar Graph with subgroup</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Stacked-Bar-Graph-with-subgroup/m-p/608673#M17729</link>
      <description>&lt;P&gt;Done&lt;/P&gt;</description>
      <pubDate>Mon, 02 Dec 2019 11:24:33 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Stacked-Bar-Graph-with-subgroup/m-p/608673#M17729</guid>
      <dc:creator>PeterClemmensen</dc:creator>
      <dc:date>2019-12-02T11:24:33Z</dc:date>
    </item>
    <item>
      <title>Re: Stacked Bar Graph with subgroup</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Stacked-Bar-Graph-with-subgroup/m-p/609570#M17905</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/301076"&gt;@Rajeshthangam&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;It works fine. Thank you so much.&lt;/P&gt;
&lt;P&gt;Is there anyway to acheive the same results in GCHART?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;No. SAS University Edition does not include the SAS/Graph part that would be needed to use the much less capable GCHART.&lt;/P&gt;</description>
      <pubDate>Wed, 04 Dec 2019 23:42:03 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Stacked-Bar-Graph-with-subgroup/m-p/609570#M17905</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2019-12-04T23:42:03Z</dc:date>
    </item>
  </channel>
</rss>

