<?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: Creating a single bar chart from multiple variables in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Creating-a-single-bar-chart-from-multiple-variables/m-p/926626#M364649</link>
    <description>Perfect! Thank you.</description>
    <pubDate>Wed, 01 May 2024 15:50:02 GMT</pubDate>
    <dc:creator>NeilH</dc:creator>
    <dc:date>2024-05-01T15:50:02Z</dc:date>
    <item>
      <title>Creating a single bar chart from multiple variables</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Creating-a-single-bar-chart-from-multiple-variables/m-p/926390#M364548</link>
      <description>&lt;P&gt;&lt;FONT size="4"&gt;Hello - I know questions like mine have been asked before, but I wasn't able to find an answer that I could adapt to my situation. I would like to create a single bar chart with individual bars for several variables in my dataset, &lt;SPAN class=""&gt;&lt;FONT size="4"&gt;where the values for each variable are either 0 or 1 for each record in the dataset.&lt;/FONT&gt; &lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT size="4"&gt;&lt;SPAN class=""&gt;I created a series of binary (0/1) variables from questions on a survey where respondents could select one more options (e.g. bn_option1, bn_option2, ...) . Now I'd like to create bar charts for the % of '1's for each option (binary variable) of the corresponding question. One bar chart per question with as many bars as there were originally options. Thanks.&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 29 Apr 2024 20:32:40 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Creating-a-single-bar-chart-from-multiple-variables/m-p/926390#M364548</guid>
      <dc:creator>NeilH</dc:creator>
      <dc:date>2024-04-29T20:32:40Z</dc:date>
    </item>
    <item>
      <title>Re: Creating a single bar chart from multiple variables</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Creating-a-single-bar-chart-from-multiple-variables/m-p/926393#M364550</link>
      <description>&lt;P&gt;First of all, are you looking for help doing this in SAS?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;BLOCKQUOTE&gt;
&lt;P&gt;&lt;FONT size="4"&gt;&lt;SPAN class=""&gt;I created a series of binary (0/1) variables from questions on a survey where respondents could select one more options (e.g. bn_option1, bn_option2, ...) . Now I'd like to create bar charts for the % of '1's for each option (binary variable) of the corresponding question. One bar chart per question with as many bars as there were originally options.&lt;BR /&gt;&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Please show us a portion of this data, provided as working SAS data step code (&lt;A href="https://blogs.sas.com/content/sastraining/2016/03/11/jedi-sas-tricks-data-to-data-step-macro/" target="_self"&gt;Examples and Instructions&lt;/A&gt;)&lt;/P&gt;</description>
      <pubDate>Mon, 29 Apr 2024 20:56:58 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Creating-a-single-bar-chart-from-multiple-variables/m-p/926393#M364550</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2024-04-29T20:56:58Z</dc:date>
    </item>
    <item>
      <title>Re: Creating a single bar chart from multiple variables</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Creating-a-single-bar-chart-from-multiple-variables/m-p/926394#M364551</link>
      <description>&lt;P&gt;Yes, Paige, I am.&lt;/P&gt;</description>
      <pubDate>Mon, 29 Apr 2024 21:00:57 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Creating-a-single-bar-chart-from-multiple-variables/m-p/926394#M364551</guid>
      <dc:creator>NeilH</dc:creator>
      <dc:date>2024-04-29T21:00:57Z</dc:date>
    </item>
    <item>
      <title>Re: Creating a single bar chart from multiple variables</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Creating-a-single-bar-chart-from-multiple-variables/m-p/926404#M364556</link>
      <description>&lt;P&gt;That would be better to demonstrate your question by posing some data and the picture you want to see.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data have;
call streaminit(123);
array x{*} opt1-opt6;
do id=1 to 100;
do i=1 to dim(x);
 x{i}=rand('bern',i/10);
end;
output;
end;
drop i;
run;




proc transpose data=have out=want;
by id;
var opt:;
run;
proc sgplot data=want pctlevel=group;
vbar _name_/group=col1 stat=percent ;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Ksharp_0-1714445711381.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/96030iD031E99171F5E791/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Ksharp_0-1714445711381.png" alt="Ksharp_0-1714445711381.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 30 Apr 2024 02:55:22 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Creating-a-single-bar-chart-from-multiple-variables/m-p/926404#M364556</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2024-04-30T02:55:22Z</dc:date>
    </item>
    <item>
      <title>Re: Creating a single bar chart from multiple variables</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Creating-a-single-bar-chart-from-multiple-variables/m-p/926467#M364577</link>
      <description>&lt;P&gt;Thank you. Here's sample data and a desired bar chart (without axis labeling).&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;TABLE border="0" cellspacing="0" cellpadding="0"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;Id&lt;/TD&gt;&lt;TD&gt;Option1&lt;/TD&gt;&lt;TD&gt;Option2&lt;/TD&gt;&lt;TD&gt;Option3&lt;/TD&gt;&lt;TD&gt;Option4&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;1&lt;/TD&gt;&lt;TD&gt;0&lt;/TD&gt;&lt;TD&gt;0&lt;/TD&gt;&lt;TD&gt;0&lt;/TD&gt;&lt;TD&gt;1&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;2&lt;/TD&gt;&lt;TD&gt;0&lt;/TD&gt;&lt;TD&gt;0&lt;/TD&gt;&lt;TD&gt;1&lt;/TD&gt;&lt;TD&gt;0&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;3&lt;/TD&gt;&lt;TD&gt;0&lt;/TD&gt;&lt;TD&gt;1&lt;/TD&gt;&lt;TD&gt;0&lt;/TD&gt;&lt;TD&gt;1&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;4&lt;/TD&gt;&lt;TD&gt;1&lt;/TD&gt;&lt;TD&gt;0&lt;/TD&gt;&lt;TD&gt;1&lt;/TD&gt;&lt;TD&gt;1&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&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="NeilH_0-1714485005391.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/96051i0A41B6228F161872/image-size/medium?v=v2&amp;amp;px=400" role="button" title="NeilH_0-1714485005391.png" alt="NeilH_0-1714485005391.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 30 Apr 2024 13:50:45 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Creating-a-single-bar-chart-from-multiple-variables/m-p/926467#M364577</guid>
      <dc:creator>NeilH</dc:creator>
      <dc:date>2024-04-30T13:50:45Z</dc:date>
    </item>
    <item>
      <title>Re: Creating a single bar chart from multiple variables</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Creating-a-single-bar-chart-from-multiple-variables/m-p/926478#M364580</link>
      <description>Your solution works just about perfectly for me. Is it possible just to display the % of 1s in the bars rather than having them as stacked bars that total 100%?</description>
      <pubDate>Tue, 30 Apr 2024 15:04:41 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Creating-a-single-bar-chart-from-multiple-variables/m-p/926478#M364580</guid>
      <dc:creator>NeilH</dc:creator>
      <dc:date>2024-04-30T15:04:41Z</dc:date>
    </item>
    <item>
      <title>Re: Creating a single bar chart from multiple variables</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Creating-a-single-bar-chart-from-multiple-variables/m-p/926480#M364581</link>
      <description>&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data have;
input Id  Option1 Option2 Option3 Option4;
cards;
1   0   0   0   1
2   0   0   1   0
3   0   1   0   1
4   1   0   1   1
;
run;

ods select none;
ods output summary=summary_results;
proc means data=have stackods mean;
var option1-option4;
run;
ods select all;

proc sgplot data=summary_results;
vbarparm response=mean category=variable;
format mean percent12.1;
label mean = 'Response';
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 30 Apr 2024 15:21:14 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Creating-a-single-bar-chart-from-multiple-variables/m-p/926480#M364581</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2024-04-30T15:21:14Z</dc:date>
    </item>
    <item>
      <title>Re: Creating a single bar chart from multiple variables</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Creating-a-single-bar-chart-from-multiple-variables/m-p/926486#M364583</link>
      <description>&lt;P&gt;Thank you. That's perfect!&lt;/P&gt;</description>
      <pubDate>Tue, 30 Apr 2024 15:38:02 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Creating-a-single-bar-chart-from-multiple-variables/m-p/926486#M364583</guid>
      <dc:creator>NeilH</dc:creator>
      <dc:date>2024-04-30T15:38:02Z</dc:date>
    </item>
    <item>
      <title>Re: Creating a single bar chart from multiple variables</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Creating-a-single-bar-chart-from-multiple-variables/m-p/926492#M364587</link>
      <description>&lt;P&gt;Hi Reeza,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Your solution to my bar chart question was elegant and works. One minor additional question. Is it possible to display the labels I have for options1-options4 for the x-axis labeling rather than the variable names?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;My code based on your answer is what I have below. Both q_7760_bn1 and q7760_bn2 have labels associated with them from the original dataset (ips.allvars3) that I see with a proc contents on summary_results.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Thanks.&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="NeilH_1-1714493531383.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/96057i2596B3AB6BF62B44/image-size/medium?v=v2&amp;amp;px=400" role="button" title="NeilH_1-1714493531383.png" alt="NeilH_1-1714493531383.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;ods select none;&lt;BR /&gt;ods output summary=summary_results;&lt;BR /&gt;proc means data=ips.allvars3 stackods mean;&lt;BR /&gt;var q7760_bn1 q7760_bn2;&lt;BR /&gt;run;&lt;BR /&gt;ods select all;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;proc sgplot data=summary_results;&lt;BR /&gt;vbarparm response=mean category=variable;&lt;BR /&gt;format mean percent12.1;&lt;BR /&gt;label mean = 'Response';&lt;BR /&gt;run;&lt;/P&gt;</description>
      <pubDate>Tue, 30 Apr 2024 16:12:24 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Creating-a-single-bar-chart-from-multiple-variables/m-p/926492#M364587</guid>
      <dc:creator>NeilH</dc:creator>
      <dc:date>2024-04-30T16:12:24Z</dc:date>
    </item>
    <item>
      <title>Re: Creating a single bar chart from multiple variables</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Creating-a-single-bar-chart-from-multiple-variables/m-p/926503#M364595</link>
      <description>&lt;P&gt;Change category= variable from &lt;STRONG&gt;variable&lt;/STRONG&gt; to &lt;STRONG&gt;label,&amp;nbsp;&lt;/STRONG&gt;in the PROC SGPLOT code.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data have;
input Id  Option1 Option2 Option3 Option4;
label option1 = 'Question #99' option2 = 'Random Text #2' option3 = 'Demoe' option4 = 'House';
cards;
1   0   0   0   1
2   0   0   1   0
3   0   1   0   1
4   1   0   1   1
;
run;

ods select none;
ods output summary=summary_results;
proc means data=have stackods mean;
var option1-option4;
run;
ods select all;

proc sgplot data=summary_results;
vbarparm response=mean category=label;
format mean percent12.1;
label mean = 'Response';
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/465151"&gt;@NeilH&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;Hi Reeza,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Your solution to my bar chart question was elegant and works. One minor additional question. Is it possible to display the labels I have for options1-options4 for the x-axis labeling rather than the variable names?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;My code based on your answer is what I have below. Both q_7760_bn1 and q7760_bn2 have labels associated with them from the original dataset (ips.allvars3) that I see with a proc contents on summary_results.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P&gt;Thanks.&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="NeilH_1-1714493531383.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/96057i2596B3AB6BF62B44/image-size/medium?v=v2&amp;amp;px=400" role="button" title="NeilH_1-1714493531383.png" alt="NeilH_1-1714493531383.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;ods select none;&lt;BR /&gt;ods output summary=summary_results;&lt;BR /&gt;proc means data=ips.allvars3 stackods mean;&lt;BR /&gt;var q7760_bn1 q7760_bn2;&lt;BR /&gt;run;&lt;BR /&gt;ods select all;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;proc sgplot data=summary_results;&lt;BR /&gt;vbarparm response=mean category=variable;&lt;BR /&gt;format mean percent12.1;&lt;BR /&gt;label mean = 'Response';&lt;BR /&gt;run;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 30 Apr 2024 17:08:00 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Creating-a-single-bar-chart-from-multiple-variables/m-p/926503#M364595</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2024-04-30T17:08:00Z</dc:date>
    </item>
    <item>
      <title>Re: Creating a single bar chart from multiple variables</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Creating-a-single-bar-chart-from-multiple-variables/m-p/926618#M364641</link>
      <description>&lt;P&gt;Worked perfectly, Reeza!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;My one issue with the current labels I have, is that&amp;nbsp; a few of them are quite long and crowd out the chart. I'll research this, but if you know of a word wrap option that can be applied to the labels in sgplot or an alternative, that would be great. I think I see how to add a line break in the label itself when it's set -&amp;nbsp;(*ESC*){unicode '000a'x}. But it's not appearing as I'd hope in the chart itself. Below is an example of a lengthy label without a newline in it. The chart displays perfectly for shorter labels.&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="NeilH_0-1714574283094.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/96094i821F9CADB3E6D98B/image-size/medium?v=v2&amp;amp;px=400" role="button" title="NeilH_0-1714574283094.png" alt="NeilH_0-1714574283094.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 01 May 2024 14:38:51 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Creating-a-single-bar-chart-from-multiple-variables/m-p/926618#M364641</guid>
      <dc:creator>NeilH</dc:creator>
      <dc:date>2024-05-01T14:38:51Z</dc:date>
    </item>
    <item>
      <title>Re: Creating a single bar chart from multiple variables</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Creating-a-single-bar-chart-from-multiple-variables/m-p/926623#M364646</link>
      <description>&lt;P&gt;FITPOLICY and SPLITCHAR on XAXIS statement.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data have;
input Id  Option1 Option2 Option3 Option4;
label option1 = 'Question really long text # to force split 99' option2 = 'Random Text with #another random split' option3 = 'Demoe' option4 = 'House';
cards;
1   0   0   0   1
2   0   0   1   0
3   0   1   0   1
4   1   0   1   1
;
run;

ods select none;
ods output summary=summary_results;
proc means data=have stackods mean;
var option1-option4;
run;
ods select all;

proc sgplot data=summary_results;
vbarparm response=mean category=label;
format mean percent12.1;
label mean = 'Response';
xaxis fitpolicy=split splitchar='#';
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/465151"&gt;@NeilH&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;Worked perfectly, Reeza!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;My one issue with the current labels I have, is that&amp;nbsp; a few of them are quite long and crowd out the chart. I'll research this, but if you know of a word wrap option that can be applied to the labels in sgplot or an alternative, that would be great. I think I see how to add a line break in the label itself when it's set -&amp;nbsp;(*ESC*){unicode '000a'x}. But it's not appearing as I'd hope in the chart itself. Below is an example of a lengthy label without a newline in it. The chart displays perfectly for shorter labels.&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="NeilH_0-1714574283094.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/96094i821F9CADB3E6D98B/image-size/medium?v=v2&amp;amp;px=400" role="button" title="NeilH_0-1714574283094.png" alt="NeilH_0-1714574283094.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 01 May 2024 15:15:11 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Creating-a-single-bar-chart-from-multiple-variables/m-p/926623#M364646</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2024-05-01T15:15:11Z</dc:date>
    </item>
    <item>
      <title>Re: Creating a single bar chart from multiple variables</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Creating-a-single-bar-chart-from-multiple-variables/m-p/926626#M364649</link>
      <description>Perfect! Thank you.</description>
      <pubDate>Wed, 01 May 2024 15:50:02 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Creating-a-single-bar-chart-from-multiple-variables/m-p/926626#M364649</guid>
      <dc:creator>NeilH</dc:creator>
      <dc:date>2024-05-01T15:50:02Z</dc:date>
    </item>
  </channel>
</rss>

