<?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: Lollipop Chart in SAS in Graphics Programming</title>
    <link>https://communities.sas.com/t5/Graphics-Programming/Lollipop-Chart-in-SAS/m-p/206318#M7690</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Not a complete answer, but you should look into this site:&amp;nbsp; &lt;A href="http://blogs.sas.com/content/graphicallyspeaking/" title="http://blogs.sas.com/content/graphicallyspeaking/"&gt;http://blogs.sas.com/content/graphicallyspeaking/&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;They have a lot of grahphs with sample code and somewhere there is an index of all the graphs - might be worth a look.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 19 Mar 2015 23:08:24 GMT</pubDate>
    <dc:creator>OS2Rules</dc:creator>
    <dc:date>2015-03-19T23:08:24Z</dc:date>
    <item>
      <title>Lollipop Chart in SAS</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Lollipop-Chart-in-SAS/m-p/206316#M7688</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Is there a way to create lollipo chart such as the one shown below using SAS ?. What procedures should I use. I have SAS 9.3.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="3-19-2015 5-59-19 PM.jpg" class="jive-image-thumbnail jive-image jiveImage" src="https://communities.sas.com/legacyfs/online/9648_3-19-2015 5-59-19 PM.jpg" style="font-size: 13.3333330154419px;" width="450" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Mar 2015 22:04:19 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Lollipop-Chart-in-SAS/m-p/206316#M7688</guid>
      <dc:creator>Forecaster</dc:creator>
      <dc:date>2015-03-19T22:04:19Z</dc:date>
    </item>
    <item>
      <title>Re: Lollipop Chart in SAS</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Lollipop-Chart-in-SAS/m-p/206317#M7689</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It will help if you can provide some data to experiment with.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Mar 2015 22:43:09 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Lollipop-Chart-in-SAS/m-p/206317#M7689</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2015-03-19T22:43:09Z</dc:date>
    </item>
    <item>
      <title>Re: Lollipop Chart in SAS</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Lollipop-Chart-in-SAS/m-p/206318#M7690</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Not a complete answer, but you should look into this site:&amp;nbsp; &lt;A href="http://blogs.sas.com/content/graphicallyspeaking/" title="http://blogs.sas.com/content/graphicallyspeaking/"&gt;http://blogs.sas.com/content/graphicallyspeaking/&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;They have a lot of grahphs with sample code and somewhere there is an index of all the graphs - might be worth a look.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Mar 2015 23:08:24 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Lollipop-Chart-in-SAS/m-p/206318#M7690</guid>
      <dc:creator>OS2Rules</dc:creator>
      <dc:date>2015-03-19T23:08:24Z</dc:date>
    </item>
    <item>
      <title>Re: Lollipop Chart in SAS</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Lollipop-Chart-in-SAS/m-p/206319#M7691</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Use SAS 9.3 PROC SGPANEL:&amp;nbsp; You have more options using SAS 9.4 or later.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;proc means data=sashelp.cars;&lt;/P&gt;&lt;P&gt;class origin type;&lt;/P&gt;&lt;P&gt;vars mpg_city;&lt;/P&gt;&lt;P&gt;output out=cars(where=(_type_ =3)) &lt;/P&gt;&lt;P&gt;&amp;nbsp; mean=MeanMpg;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data cars;&lt;/P&gt;&lt;P&gt;&amp;nbsp; set cars;&lt;/P&gt;&lt;P&gt;&amp;nbsp; zero=0;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;proc print;run;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ods graphics / reset width=4in height=3in imagename='CarsPanel';&lt;/P&gt;&lt;P&gt;title 'Mileage by Origin and Type';&lt;/P&gt;&lt;P&gt;proc sgpanel data=cars noautolegend;&lt;/P&gt;&lt;P&gt;&amp;nbsp; panelby origin / layout=rowlattice novarname uniscale=column;&lt;/P&gt;&lt;P&gt;&amp;nbsp; highlow y=type low=zero high=meanmpg / group=type;&lt;/P&gt;&lt;P&gt;&amp;nbsp; scatter y=type x=meanmpg / group=type markerattrs=(symbol=circlefilled);&lt;/P&gt;&lt;P&gt;&amp;nbsp; colaxis offsetmin=0;&lt;/P&gt;&lt;P&gt;&amp;nbsp; rowaxis display=(nolabel noticks) valueattrs=(size=6);&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="CarsPanel.png" class="jive-image-thumbnail jive-image" src="https://communities.sas.com/legacyfs/online/9649_CarsPanel.png" width="450" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 20 Mar 2015 00:18:09 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Lollipop-Chart-in-SAS/m-p/206319#M7691</guid>
      <dc:creator>Jay54</dc:creator>
      <dc:date>2015-03-20T00:18:09Z</dc:date>
    </item>
  </channel>
</rss>

