<?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: Plot for multiple variables in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Plot-for-multiple-variables/m-p/563722#M158061</link>
    <description>&lt;P&gt;It appears that you are in the same class as the author of &lt;A href="https://communities.sas.com/t5/SAS-Programming/Renaming-variables-then-assign-a-numeric-to-the-renamed-variable/m-p/563682" target="_blank"&gt;https://communities.sas.com/t5/SAS-Programming/Renaming-variables-then-assign-a-numeric-to-the-renamed-variable/m-p/563682&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;may be it is time to form a study group?&lt;/P&gt;</description>
    <pubDate>Wed, 05 Jun 2019 14:42:30 GMT</pubDate>
    <dc:creator>ballardw</dc:creator>
    <dc:date>2019-06-05T14:42:30Z</dc:date>
    <item>
      <title>Plot for multiple variables</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Plot-for-multiple-variables/m-p/563654#M158043</link>
      <description>&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Hi guys,&lt;/P&gt;&lt;P&gt;I have created a table containing sum of a few variables. I wanted to plot the sum of these variables on a graph, preferably a histogram.&lt;/P&gt;&lt;P&gt;This would help me understand the different variables on a graph.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;proc sql;&lt;BR /&gt;create table t4 as&lt;BR /&gt;select sum(Hardplastics) as Hard_Plastics, sum(Softplastics) as Soft_Plastics, sum(plasticlines) as Plastic_Lines, sum(styrofoam) as Styrofoam, sum(pellets) as Pellets, sum(driftingwood) as Drifting_Wood, sum(pumice) as Pumice&lt;BR /&gt;from assign2.survey;&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Intended Output&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Capture2.PNG" style="width: 600px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/29992iF2B9B4CE01EFC294/image-size/large?v=v2&amp;amp;px=999" role="button" title="Capture2.PNG" alt="Capture2.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 05 Jun 2019 09:59:53 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Plot-for-multiple-variables/m-p/563654#M158043</guid>
      <dc:creator>Yashponde</dc:creator>
      <dc:date>2019-06-05T09:59:53Z</dc:date>
    </item>
    <item>
      <title>Re: Plot for multiple variables</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Plot-for-multiple-variables/m-p/563709#M158059</link>
      <description>&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc sql;
create table have as
select 'age' as name length=20,sum(age) as sum from sashelp.class
union
select 'weight' as name length=20,sum(weight) as sum from sashelp.class
union
select 'height' as name length=20,sum(height) as sum from sashelp.class;
quit;
proc sgplot data=have;
vbar name / response=sum nostatlabel;
yaxis display=(noline) grid;
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 05 Jun 2019 14:03:27 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Plot-for-multiple-variables/m-p/563709#M158059</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2019-06-05T14:03:27Z</dc:date>
    </item>
    <item>
      <title>Re: Plot for multiple variables</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Plot-for-multiple-variables/m-p/563722#M158061</link>
      <description>&lt;P&gt;It appears that you are in the same class as the author of &lt;A href="https://communities.sas.com/t5/SAS-Programming/Renaming-variables-then-assign-a-numeric-to-the-renamed-variable/m-p/563682" target="_blank"&gt;https://communities.sas.com/t5/SAS-Programming/Renaming-variables-then-assign-a-numeric-to-the-renamed-variable/m-p/563682&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;may be it is time to form a study group?&lt;/P&gt;</description>
      <pubDate>Wed, 05 Jun 2019 14:42:30 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Plot-for-multiple-variables/m-p/563722#M158061</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2019-06-05T14:42:30Z</dc:date>
    </item>
  </channel>
</rss>

