<?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 help creating area chart in Graphics Programming</title>
    <link>https://communities.sas.com/t5/Graphics-Programming/help-creating-area-chart/m-p/49042#M1652</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Have you looked at the code on Robert Allison's page:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://robslink.com/SAS/democd7/aaaindex.htm"&gt;http://robslink.com/SAS/democd7/aaaindex.htm&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 16 Aug 2011 15:20:00 GMT</pubDate>
    <dc:creator>art297</dc:creator>
    <dc:date>2011-08-16T15:20:00Z</dc:date>
    <item>
      <title>help creating area chart</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/help-creating-area-chart/m-p/49041#M1651</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi all,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i have a data set arranged with the following columns:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Month Day Hour EndUse LoadElec LoadGas&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I think the columns Month/Day/Hour are pretty self-explanatory.&amp;nbsp; The column "EndUse" has 13 categories (Lighting,Cooking,Hotwater,AC,Heating,....).&amp;nbsp; I would like to create a chart showing how the various end-uses contribute to daily load for each month-day.&amp;nbsp; I haven't been able to find an option that allows me although the cloest I got was a series plot with the column "EndUse" as a parameter to the Group= option.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 16 Aug 2011 15:16:56 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/help-creating-area-chart/m-p/49041#M1651</guid>
      <dc:creator>asishgautam</dc:creator>
      <dc:date>2011-08-16T15:16:56Z</dc:date>
    </item>
    <item>
      <title>help creating area chart</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/help-creating-area-chart/m-p/49042#M1652</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Have you looked at the code on Robert Allison's page:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://robslink.com/SAS/democd7/aaaindex.htm"&gt;http://robslink.com/SAS/democd7/aaaindex.htm&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 16 Aug 2011 15:20:00 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/help-creating-area-chart/m-p/49042#M1652</guid>
      <dc:creator>art297</dc:creator>
      <dc:date>2011-08-16T15:20:00Z</dc:date>
    </item>
    <item>
      <title>help creating area chart</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/help-creating-area-chart/m-p/49043#M1653</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt; You might want to use PROC SORT to sort by EndUse and then use PROC MEANS to summarize the data for each Month+Day pair.&lt;/P&gt;&lt;P&gt;You can then use PROC SGPLOT to construct a line plot or PROC SGPANEL to construct a panel of line plots. See if the last two examples at &lt;A href="http://blogs.sas.com/content/iml/2010/12/03/how-does-participation-in-social-media-vary-with-age/"&gt;http://blogs.sas.com/content/iml/2010/12/03/how-does-participation-in-social-media-vary-with-age/&lt;/A&gt; are similar to what you want. If so, you can use the link in the first paragraph to download the program that created the plots.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 16 Aug 2011 15:25:39 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/help-creating-area-chart/m-p/49043#M1653</guid>
      <dc:creator>Rick_SAS</dc:creator>
      <dc:date>2011-08-16T15:25:39Z</dc:date>
    </item>
    <item>
      <title>help creating area chart</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/help-creating-area-chart/m-p/49044#M1654</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thanks! i am curious as to why proc sgplot cannot handle something like this?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 16 Aug 2011 15:34:04 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/help-creating-area-chart/m-p/49044#M1654</guid>
      <dc:creator>asishgautam</dc:creator>
      <dc:date>2011-08-16T15:34:04Z</dc:date>
    </item>
    <item>
      <title>help creating area chart</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/help-creating-area-chart/m-p/49045#M1655</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt; If you want to draw this as an area plot using the SG procedures, you can use the BAND plot to do it. Set the LOWER = 0 and the UPPER=&amp;lt;your varialble&amp;gt;. You can also set transparency on the plot so that you can see obscured areas.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps!&lt;BR /&gt;Dan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 16 Aug 2011 15:44:35 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/help-creating-area-chart/m-p/49045#M1655</guid>
      <dc:creator>DanH_sas</dc:creator>
      <dc:date>2011-08-16T15:44:35Z</dc:date>
    </item>
    <item>
      <title>help creating area chart</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/help-creating-area-chart/m-p/49046#M1656</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt; Here is an example of what Dan is suggesting:&lt;/P&gt;&lt;P&gt;&lt;A href="https://sites.google.com/site/smatange/ods-graphics/panel-by-month-and-day"&gt;https://sites.google.com/site/smatange/ods-graphics/panel-by-month-and-day&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 16 Aug 2011 16:24:26 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/help-creating-area-chart/m-p/49046#M1656</guid>
      <dc:creator>Jay54</dc:creator>
      <dc:date>2011-08-16T16:24:26Z</dc:date>
    </item>
    <item>
      <title>help creating area chart</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/help-creating-area-chart/m-p/49047#M1657</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;awesome!!!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 16 Aug 2011 17:08:23 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/help-creating-area-chart/m-p/49047#M1657</guid>
      <dc:creator>asishgautam</dc:creator>
      <dc:date>2011-08-16T17:08:23Z</dc:date>
    </item>
    <item>
      <title>help creating area chart</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/help-creating-area-chart/m-p/49048#M1658</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Rather than area (or band) plots, I tend to prefer stacked bar charts for this kind of thing.&amp;nbsp; You can make the space between the bars zero, so that there's no gap between the bars, which gives it the same visual effect of the area plot, but since you have discrete bar segments, you can easily add mouse-over text (and do things like placing labels on each of the bar segments, etc).&amp;nbsp; Bar charts also let you do easy "grouping", which might come in handy with you (day/hour) data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here is an example:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://robslink.com/SAS/democd48/smartphones.htm"&gt;http://robslink.com/SAS/democd48/smartphones.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://robslink.com/SAS/democd48/smartphones_info.htm"&gt;http://robslink.com/SAS/democd48/smartphones_info.htm&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 25 Aug 2011 16:03:26 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/help-creating-area-chart/m-p/49048#M1658</guid>
      <dc:creator>GraphGuy</dc:creator>
      <dc:date>2011-08-25T16:03:26Z</dc:date>
    </item>
  </channel>
</rss>

