<?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: How to make grouped histogams in Graphics Programming</title>
    <link>https://communities.sas.com/t5/Graphics-Programming/How-to-make-grouped-bar-chart/m-p/474598#M16403</link>
    <description>&lt;P&gt;I think you're looking for something similar to:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;proc sgplot data=collegesurvey;
  vbar gradelevel /group=planstogotocollege groupdisplay=cluster;
run;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You might want bookmark this as one source of graphs with pictures and example SAS code including data.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="http://support.sas.com/sassamples/graphgallery/index.html" target="_blank"&gt;http://support.sas.com/sassamples/graphgallery/index.html&lt;/A&gt;&lt;/P&gt;</description>
    <pubDate>Fri, 29 Jun 2018 22:45:34 GMT</pubDate>
    <dc:creator>ballardw</dc:creator>
    <dc:date>2018-06-29T22:45:34Z</dc:date>
    <item>
      <title>How to make grouped bar chart</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/How-to-make-grouped-bar-chart/m-p/474593#M16402</link>
      <description>&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I'm new to SAS and have been struggling with learning it. Hopefully someone can help me with a task.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I'm trying to make a grouped bar chart. So I have a dataset with the following information:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;idNumber: id number of the student&lt;/P&gt;
&lt;P&gt;gradeLevel: grade in high school... takes values of freshman, sophomore, junior, and senior.&lt;/P&gt;
&lt;P&gt;plansToGoToCollege: binary indicator indicating whether the student plans to go to college (1 if yes,0 if no).&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;dataset is called collegeSurvey&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I'm trying to make a bar charrt plotting the 0's and 1's of the plansToGoToCollege variable segmented by gradeLevel. Something that looks kinda like the picture below (which is just a random picture I found from google).&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;So I'd have 4 different x values (fresh, sophomore, junior, and senior)... each x value has 2 bars (0 and 1), and the y axis would measure the frequency of the occurrence.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;gradeLevel is of type character&lt;/P&gt;
&lt;P&gt;plansToGoToCollege is numeric&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="zy22e.png" style="width: 600px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/21511iC9BA0787BDA2DB7A/image-size/large?v=v2&amp;amp;px=999" role="button" title="zy22e.png" alt="zy22e.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 02 Jul 2018 16:59:22 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/How-to-make-grouped-bar-chart/m-p/474593#M16402</guid>
      <dc:creator>toesockshoe</dc:creator>
      <dc:date>2018-07-02T16:59:22Z</dc:date>
    </item>
    <item>
      <title>Re: How to make grouped histogams</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/How-to-make-grouped-bar-chart/m-p/474598#M16403</link>
      <description>&lt;P&gt;I think you're looking for something similar to:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;proc sgplot data=collegesurvey;
  vbar gradelevel /group=planstogotocollege groupdisplay=cluster;
run;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You might want bookmark this as one source of graphs with pictures and example SAS code including data.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="http://support.sas.com/sassamples/graphgallery/index.html" target="_blank"&gt;http://support.sas.com/sassamples/graphgallery/index.html&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 29 Jun 2018 22:45:34 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/How-to-make-grouped-bar-chart/m-p/474598#M16403</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2018-06-29T22:45:34Z</dc:date>
    </item>
    <item>
      <title>Re: How to make grouped histogams</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/How-to-make-grouped-bar-chart/m-p/474613#M16408</link>
      <description>&lt;P&gt;There are multiple ways, see the posts below for example code with the graphs so you can see what matches up to what you're attempting.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://blogs.sas.com/content/iml/2016/03/09/comparative-panel-overlay-histograms-sas.html" target="_blank"&gt;https://blogs.sas.com/content/iml/2016/03/09/comparative-panel-overlay-histograms-sas.html&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://blogs.sas.com/content/graphicallyspeaking/2017/04/30/getting-started-with-sgplot-histograms/" target="_blank"&gt;https://blogs.sas.com/content/graphicallyspeaking/2017/04/30/getting-started-with-sgplot-histograms/&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/218524"&gt;@toesockshoe&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I'm new to SAS and have been struggling with learning it. Hopefully someone can help me with a task.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I'm trying to make a grouped histogram. So I have a dataset with the following information:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;idNumber: id number of the student&lt;/P&gt;
&lt;P&gt;gradeLevel: grade in high school... takes values of freshman, sophomore, junior, and senior.&lt;/P&gt;
&lt;P&gt;plansToGoToCollege: binary indicator indicating whether the student plans to go to college (1 if yes,0 if no).&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;dataset is called collegeSurvey&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I'm trying to make a histogram plotting the 0's and 1's of the plansToGoToCollege variable segmented by gradeLevel. Something that looks kinda like the picture below (which is just a random picture I found from google).&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;So I'd have 4 different x values (fresh, sophomore, junior, and senior)... each x value has 2 bars (0 and 1), and the y axis would measure the frequency of the occurrence.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;gradeLevel is of type character&lt;/P&gt;
&lt;P&gt;plansToGoToCollege is numeric&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="zy22e.png" style="width: 600px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/21511iC9BA0787BDA2DB7A/image-size/large?v=v2&amp;amp;px=999" role="button" title="zy22e.png" alt="zy22e.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 30 Jun 2018 00:56:19 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/How-to-make-grouped-bar-chart/m-p/474613#M16408</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2018-06-30T00:56:19Z</dc:date>
    </item>
    <item>
      <title>Re: How to make grouped histogams</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/How-to-make-grouped-bar-chart/m-p/474898#M16414</link>
      <description>&lt;P&gt;Here's one way to do it, using a grouped bar chart, created with Proc Gchart:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Here, I'm just creating some "random data" similar to the data you describe, since I don't have your real data:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;data collegeSurvey (keep = idNumber gradelevel plansToGoToCollege);&lt;BR /&gt;do loop = 1 to 1000;&lt;BR /&gt; idNumber=round(ranuni(123)*10000);&lt;BR /&gt; length grade_level $10;&lt;BR /&gt; gradelevel_num=round(ranuni(123)*4);&lt;BR /&gt; if gradelevel_num=1 then gradelevel='freshman';&lt;BR /&gt; if gradelevel_num=2 then gradelevel='sophmore';&lt;BR /&gt; if gradelevel_num=3 then gradelevel='junior';&lt;BR /&gt; if gradelevel_num=4 then gradelevel='senior';&lt;BR /&gt; if ranuni(123)&amp;gt;.7 then plansToGoToCollege=1;&lt;BR /&gt; else plansToGoToCollege=0;&lt;BR /&gt; output;&lt;BR /&gt; end;&lt;BR /&gt;run;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;And this is how I generate the plot:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;pattern1 v=s c=pink;&lt;BR /&gt;pattern2 v=s c=lime;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;axis1 label=none order=('freshman' 'sophmore' 'junior' 'senior') offset=(2,2);&lt;BR /&gt;axis2 label=('Count') major=none minor=none style=0;&lt;BR /&gt;axis3 label=none value=none;&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;legend1 shape=bar(.15in,.15in);&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;proc gchart data=collegeSurvey;&lt;BR /&gt;vbar plansToGoToCollege / discrete type=freq &lt;BR /&gt; group=gradelevel&lt;BR /&gt; gaxis=axis1 raxis=axis2 maxis=axis3 noframe&lt;BR /&gt; autoref clipref cref=graydd legend=legend1&lt;BR /&gt; subgroup=plansToGoToCollege /* controls color */&lt;BR /&gt; coutline=gray77&lt;BR /&gt; space=0;&lt;/P&gt;
&lt;P&gt;run;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="college.png" style="width: 600px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/21528iC964D215F60D071C/image-size/large?v=v2&amp;amp;px=999" role="button" title="college.png" alt="college.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 02 Jul 2018 13:27:25 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/How-to-make-grouped-bar-chart/m-p/474898#M16414</guid>
      <dc:creator>GraphGuy</dc:creator>
      <dc:date>2018-07-02T13:27:25Z</dc:date>
    </item>
    <item>
      <title>Re: How to make grouped histogams</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/How-to-make-grouped-bar-chart/m-p/475023#M16415</link>
      <description>&lt;P&gt;thanks! I did that and it plotted the frequencies.... I'm wondering if theres a way change that to percentages. So if there are 150 0's and 50 1's for freshman, how do I change it do 75% and 25%?&lt;/P&gt;</description>
      <pubDate>Mon, 02 Jul 2018 19:05:15 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/How-to-make-grouped-bar-chart/m-p/475023#M16415</guid>
      <dc:creator>toesockshoe</dc:creator>
      <dc:date>2018-07-02T19:05:15Z</dc:date>
    </item>
    <item>
      <title>Re: How to make grouped histogams</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/How-to-make-grouped-bar-chart/m-p/475038#M16416</link>
      <description>&lt;P&gt;Try changing type=FREQ to type=PERCENT.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="http://support.sas.com/documentation/cdl/en/proc/61895/HTML/default/viewer.htm#a002473361.htm" target="_blank"&gt;http://support.sas.com/documentation/cdl/en/proc/61895/HTML/default/viewer.htm#a002473361.htm&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 02 Jul 2018 20:03:44 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/How-to-make-grouped-bar-chart/m-p/475038#M16416</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2018-07-02T20:03:44Z</dc:date>
    </item>
    <item>
      <title>Re: How to make grouped histogams</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/How-to-make-grouped-bar-chart/m-p/475041#M16417</link>
      <description>&lt;P&gt;type wont show up as option though&lt;/P&gt;</description>
      <pubDate>Mon, 02 Jul 2018 20:07:33 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/How-to-make-grouped-bar-chart/m-p/475041#M16417</guid>
      <dc:creator>toesockshoe</dc:creator>
      <dc:date>2018-07-02T20:07:33Z</dc:date>
    </item>
    <item>
      <title>Re: How to make grouped histogams</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/How-to-make-grouped-bar-chart/m-p/475043#M16418</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/218524"&gt;@toesockshoe&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;type wont show up as option though&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;I don't know what that means.&lt;/P&gt;</description>
      <pubDate>Mon, 02 Jul 2018 20:09:55 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/How-to-make-grouped-bar-chart/m-p/475043#M16418</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2018-07-02T20:09:55Z</dc:date>
    </item>
    <item>
      <title>Re: How to make grouped histogams</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/How-to-make-grouped-bar-chart/m-p/475045#M16419</link>
      <description>&lt;P&gt;Here is the error I get&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;ERROR 22-322: Syntax error, expecting one of the following: ;, ALPHA, ATTRID, BARWIDTH, BASELINE, BASELINEATTRS, CATEGORYORDER,&lt;/P&gt;&lt;P&gt;CLUSTERWIDTH, COLORMODEL, COLORRESPONSE, COLORSTAT, DATALABEL, DATALABELATTRS, DATALABELFITPOLICY, DATALABELPOS,&lt;/P&gt;&lt;P&gt;DATASKIN, DISCRETEOFFSET, FILL, FILLATTRS, FILLTYPE, FREQ, GROUP, GROUPDISPLAY, GROUPORDER, LEGENDLABEL, LIMITATTRS,&lt;/P&gt;&lt;P&gt;LIMITS, LIMITSTAT, MISSING, NAME, NOFILL, NOOUTLINE, NOSTATLABEL, NOZEROBARS, NUMSTD, OUTLINE, OUTLINEATTRS, RATTRID,&lt;/P&gt;&lt;P&gt;RESPONSE, SEGLABEL, SEGLABELATTRS, SEGLABELFITPOLICY, SEGLABELFORMAT, SPLITCHAR, SPLITCHARNODROP, STAT, STATLABEL,&lt;/P&gt;&lt;P&gt;TIP, TIPFORMAT, TIPLABEL, TRANSPARENCY, URL, WEIGHT, X2AXIS, Y2AXIS.&lt;/P&gt;&lt;P&gt;ERROR 76-322: Syntax error, statement will be ignored.&lt;/P&gt;</description>
      <pubDate>Mon, 02 Jul 2018 20:27:00 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/How-to-make-grouped-bar-chart/m-p/475045#M16419</guid>
      <dc:creator>toesockshoe</dc:creator>
      <dc:date>2018-07-02T20:27:00Z</dc:date>
    </item>
    <item>
      <title>Re: How to make grouped histogams</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/How-to-make-grouped-bar-chart/m-p/475047#M16420</link>
      <description>&lt;P&gt;Full code and log please. My suggestion was to change the TYPE= from the original code posted by Rob Allison.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/218524"&gt;@toesockshoe&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;Here is the error I get&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;ERROR 22-322: Syntax error, expecting one of the following: ;, ALPHA, ATTRID, BARWIDTH, BASELINE, BASELINEATTRS, CATEGORYORDER,&lt;/P&gt;
&lt;P&gt;CLUSTERWIDTH, COLORMODEL, COLORRESPONSE, COLORSTAT, DATALABEL, DATALABELATTRS, DATALABELFITPOLICY, DATALABELPOS,&lt;/P&gt;
&lt;P&gt;DATASKIN, DISCRETEOFFSET, FILL, FILLATTRS, FILLTYPE, FREQ, GROUP, GROUPDISPLAY, GROUPORDER, LEGENDLABEL, LIMITATTRS,&lt;/P&gt;
&lt;P&gt;LIMITS, LIMITSTAT, MISSING, NAME, NOFILL, NOOUTLINE, NOSTATLABEL, NOZEROBARS, NUMSTD, OUTLINE, OUTLINEATTRS, RATTRID,&lt;/P&gt;
&lt;P&gt;RESPONSE, SEGLABEL, SEGLABELATTRS, SEGLABELFITPOLICY, SEGLABELFORMAT, SPLITCHAR, SPLITCHARNODROP, STAT, STATLABEL,&lt;/P&gt;
&lt;P&gt;TIP, TIPFORMAT, TIPLABEL, TRANSPARENCY, URL, WEIGHT, X2AXIS, Y2AXIS.&lt;/P&gt;
&lt;P&gt;ERROR 76-322: Syntax error, statement will be ignored.&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 02 Jul 2018 20:28:20 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/How-to-make-grouped-bar-chart/m-p/475047#M16420</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2018-07-02T20:28:20Z</dc:date>
    </item>
    <item>
      <title>Re: How to make grouped histogams</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/How-to-make-grouped-bar-chart/m-p/475052#M16421</link>
      <description>&lt;P&gt;here is my code:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;proc sgplot data=collegesurvey;&lt;BR /&gt;&amp;nbsp; vbar gradelevel /group=planstogotocollege groupdisplay=cluster;&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;uhh I don't think I can give you the full log... there are some variable names that are proprietary... the example I gave above is a madeup example.&lt;/P&gt;</description>
      <pubDate>Mon, 02 Jul 2018 20:53:27 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/How-to-make-grouped-bar-chart/m-p/475052#M16421</guid>
      <dc:creator>toesockshoe</dc:creator>
      <dc:date>2018-07-02T20:53:27Z</dc:date>
    </item>
    <item>
      <title>Re: How to make grouped histogams</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/How-to-make-grouped-bar-chart/m-p/475053#M16422</link>
      <description>&lt;P&gt;The example provided was GCHART and the solution suggested aligned with GCHART. You are using SGPLOT instead, and the option within SGPLOT is STAT=PERCENT.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="http://documentation.sas.com/?docsetId=grstatproc&amp;amp;docsetTarget=n0p7vdd69sgf3wn1479qxqxuryrt.htm&amp;amp;docsetVersion=3.1&amp;amp;locale=ja#n17juzi1dax3syn1j1w4dl6brlse" target="_blank"&gt;http://documentation.sas.com/?docsetId=grstatproc&amp;amp;docsetTarget=n0p7vdd69sgf3wn1479qxqxuryrt.htm&amp;amp;docsetVersion=3.1&amp;amp;locale=ja#n17juzi1dax3syn1j1w4dl6brlse&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/218524"&gt;@toesockshoe&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;here is my code:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;proc sgplot data=collegesurvey;&lt;BR /&gt;&amp;nbsp; vbar gradelevel /group=planstogotocollege groupdisplay=cluster;&lt;BR /&gt;run;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;uhh I don't think I can give you the full log... there are some variable names that are proprietary... the example I gave above is a madeup example.&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 02 Jul 2018 21:00:08 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/How-to-make-grouped-bar-chart/m-p/475053#M16422</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2018-07-02T21:00:08Z</dc:date>
    </item>
    <item>
      <title>Re: How to make grouped histogams</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/How-to-make-grouped-bar-chart/m-p/475058#M16423</link>
      <description>&lt;P&gt;ok thanks... ill keep that in mind for future posts!&lt;/P&gt;</description>
      <pubDate>Mon, 02 Jul 2018 21:23:51 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/How-to-make-grouped-bar-chart/m-p/475058#M16423</guid>
      <dc:creator>toesockshoe</dc:creator>
      <dc:date>2018-07-02T21:23:51Z</dc:date>
    </item>
  </channel>
</rss>

