<?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: Anyone recognize this graph type? in Graphics Programming</title>
    <link>https://communities.sas.com/t5/Graphics-Programming/Anyone-recognize-this-graph-type/m-p/274414#M9792</link>
    <description>Thanks, Sanjay.  Couldn't agree more.  Unfortunately the end department chose the format and I am just trying to make it fit in an ODS region.&lt;BR /&gt;&lt;BR /&gt;Much appreciated!&lt;BR /&gt;&lt;BR /&gt;--Ben</description>
    <pubDate>Wed, 01 Jun 2016 16:46:18 GMT</pubDate>
    <dc:creator>BenConner</dc:creator>
    <dc:date>2016-06-01T16:46:18Z</dc:date>
    <item>
      <title>Anyone recognize this graph type?</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Anyone-recognize-this-graph-type/m-p/274406#M9789</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I'm working with some code that produces the graph below and the program is ugly (proc template).&amp;nbsp; I seem to recall something similar in a SAS presentation or Training email in the last few years but can't put my finger on it.&amp;nbsp; Does anyone recognize this type of graph with differing size circles representing relative percentages?&amp;nbsp; Is this a&amp;nbsp;custom graph or&amp;nbsp;is there a&amp;nbsp;SAS Proc that can generate them (other than proc template)?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;--Ben&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;IMG title="circlesamp.PNG" alt="circlesamp.PNG" src="https://communities.sas.com/t5/image/serverpage/image-id/3435i89CEF09317AB1E0F/image-size/medium?v=v2&amp;amp;px=-1" border="0" /&gt;&lt;/P&gt;&lt;BR /&gt;&lt;IMG src="https://communities.sas.com/t5/image/serverpage/image-id/12606i7571844B0E22FCEC/image-size/large?v=1.0&amp;amp;px=600" border="0" alt="circlesamp.PNG" title="circlesamp.PNG" /&gt;</description>
      <pubDate>Wed, 01 Jun 2016 16:12:33 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Anyone-recognize-this-graph-type/m-p/274406#M9789</guid>
      <dc:creator>BenConner</dc:creator>
      <dc:date>2016-06-01T16:12:33Z</dc:date>
    </item>
    <item>
      <title>Re: Anyone recognize this graph type?</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Anyone-recognize-this-graph-type/m-p/274410#M9790</link>
      <description>&lt;P&gt;This appears to be a custom graph, not from any SAS procedure I know of. &amp;nbsp;Probably uses a BUBBLE plot, available in both GTL and SGPLOT.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Generally, Usage of area for magnitude comparisons is not effective. &amp;nbsp;Without the value labels, it would be hard to see which was higher. &amp;nbsp;it woudl be preferable to use a clustered bar chart to represent this data that would deliver the data in a way that allows for better comparisons (below). &amp;nbsp;But, often customers will ask for &amp;nbsp;unique and different representation.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Code attached below. &amp;nbsp;Some appearance options can be skipped.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;IMG src="https://communities.sas.com/t5/image/serverpage/image-id/3438i6D88CD5C37E85773/image-size/original?v=v2&amp;amp;px=-1" border="0" alt="Sales.png" title="Sales.png" /&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;%let gpath='.';&lt;BR /&gt;%let dpi=150;&lt;BR /&gt;ods html close;&lt;BR /&gt;ods listing image_dpi=&amp;amp;dpi gpath=&amp;amp;gpath;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;data sales;&lt;BR /&gt; format Value percent8.0;&lt;BR /&gt; input Group $1-25 Category $26-50 Value;&lt;BR /&gt; datalines;&lt;BR /&gt;Your Sales Figures Western States Region 0.68&lt;BR /&gt;Your Sales Figures Mountain States Region 0.49&lt;BR /&gt;Your Sales Figures Central States Region 0.77&lt;BR /&gt;Your Sales Figures Eastern States Region 0.06&lt;BR /&gt;Your Peer's Sales Figures Western States Region 0.70&lt;BR /&gt;Your Peer's Sales Figures Mountain States Region 0.46&lt;BR /&gt;Your Peer's Sales Figures Central States Region 0.73&lt;BR /&gt;Your Peer's Sales Figures Eastern States Region 0.10&lt;BR /&gt;;&lt;BR /&gt;run;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;ods graphics / reset width=4in height=2.5in imagename='Sales';&lt;BR /&gt;title 'Sales by Region';&lt;BR /&gt;proc sgplot data=sales noborder;&lt;BR /&gt;&amp;nbsp; vbarparm category=Category response=value / group=Group &lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; groupdisplay=cluster dataskin=pressed datalabel;&lt;BR /&gt;&amp;nbsp; keylegend / title='';&lt;BR /&gt;&amp;nbsp; yaxis display=(noline noticks nolabel) grid;&lt;BR /&gt;&amp;nbsp; xaxis display=(nolabel noticks);&lt;BR /&gt;run;&lt;/P&gt;</description>
      <pubDate>Wed, 01 Jun 2016 16:37:43 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Anyone-recognize-this-graph-type/m-p/274410#M9790</guid>
      <dc:creator>Jay54</dc:creator>
      <dc:date>2016-06-01T16:37:43Z</dc:date>
    </item>
    <item>
      <title>Re: Anyone recognize this graph type?</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Anyone-recognize-this-graph-type/m-p/274413#M9791</link>
      <description>&lt;P&gt;It sounds like a BUBBLE plot to me but I may be missing something&lt;/P&gt;</description>
      <pubDate>Wed, 01 Jun 2016 16:42:26 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Anyone-recognize-this-graph-type/m-p/274413#M9791</guid>
      <dc:creator>jimhorne</dc:creator>
      <dc:date>2016-06-01T16:42:26Z</dc:date>
    </item>
    <item>
      <title>Re: Anyone recognize this graph type?</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Anyone-recognize-this-graph-type/m-p/274414#M9792</link>
      <description>Thanks, Sanjay.  Couldn't agree more.  Unfortunately the end department chose the format and I am just trying to make it fit in an ODS region.&lt;BR /&gt;&lt;BR /&gt;Much appreciated!&lt;BR /&gt;&lt;BR /&gt;--Ben</description>
      <pubDate>Wed, 01 Jun 2016 16:46:18 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Anyone-recognize-this-graph-type/m-p/274414#M9792</guid>
      <dc:creator>BenConner</dc:creator>
      <dc:date>2016-06-01T16:46:18Z</dc:date>
    </item>
  </channel>
</rss>

