<?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: Categorical scatterplots similar to PRISM? in Graphics Programming</title>
    <link>https://communities.sas.com/t5/Graphics-Programming/Categorical-scatterplots-similar-to-PRISM/m-p/140104#M5297</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You may have to explain what that graph represents and the pieces. No legend makes it very hard to guess. It looks like it might be a scatter plot overlayed on a box plot but the content isn't very obvious without much more information.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Include data used to make your example as we have no clue what your data structure would be and we can't even make a test data set to try to match your output.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 12 Jun 2014 17:11:12 GMT</pubDate>
    <dc:creator>ballardw</dc:creator>
    <dc:date>2014-06-12T17:11:12Z</dc:date>
    <item>
      <title>Categorical scatterplots similar to PRISM?</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Categorical-scatterplots-similar-to-PRISM/m-p/140103#M5296</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The title says it all, I'm trying to generate a scatterplot similar what PRISM can do. Has anyone tried to do something similar in SAS? &lt;/P&gt;&lt;P&gt;&lt;IMG class="jiveImage" height="208" src="http://i.stack.imgur.com/z53zB.gif" style="width: 275px; height: 207.70392749244712px;" width="275" /&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://i.stack.imgur.com/z53zB.gif" title="http://i.stack.imgur.com/z53zB.gif"&gt;http://i.stack.imgur.com/z53zB.gif&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Trying a categorical x-axis only creates a column of dots with the corresponding values. &lt;/P&gt;&lt;P&gt;proc sgplot data=sashelp.class;&lt;/P&gt;&lt;P&gt;&amp;nbsp; scatter x=sex y = height&lt;/P&gt;&lt;P&gt;&amp;nbsp; /MARKERATTRS&amp;nbsp; =(symbol=circlefilled);&lt;/P&gt;&lt;P&gt;&amp;nbsp; run;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I appreciate your feedback.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Jun 2014 15:32:25 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Categorical-scatterplots-similar-to-PRISM/m-p/140103#M5296</guid>
      <dc:creator>Fettah</dc:creator>
      <dc:date>2014-06-12T15:32:25Z</dc:date>
    </item>
    <item>
      <title>Re: Categorical scatterplots similar to PRISM?</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Categorical-scatterplots-similar-to-PRISM/m-p/140104#M5297</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You may have to explain what that graph represents and the pieces. No legend makes it very hard to guess. It looks like it might be a scatter plot overlayed on a box plot but the content isn't very obvious without much more information.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Include data used to make your example as we have no clue what your data structure would be and we can't even make a test data set to try to match your output.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Jun 2014 17:11:12 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Categorical-scatterplots-similar-to-PRISM/m-p/140104#M5297</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2014-06-12T17:11:12Z</dc:date>
    </item>
    <item>
      <title>Re: Categorical scatterplots similar to PRISM?</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Categorical-scatterplots-similar-to-PRISM/m-p/140105#M5298</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;JITTER is supported at SAS 9.4.&amp;nbsp; Jitter kicks in when the data is very dense.&amp;nbsp; But it may not kick in for sashelp.class. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;proc sgplot data=sashelp.cars(where=(type ne 'Hybrid'));&lt;/P&gt;&lt;P&gt;&amp;nbsp; scatter x=type y=mpg_city / jitter &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; MARKERATTRS=(symbol=circlefilled);&lt;/P&gt;&lt;P&gt;&amp;nbsp; run;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;We are considering other types of jitter and options.&amp;nbsp; Please feel free to provide your suggestions.&lt;/P&gt;&lt;P&gt;&lt;IMG alt="jitter_cars_SG.png" class="jive-image-thumbnail jive-image" src="https://communities.sas.com/legacyfs/online/6601_jitter_cars_SG.png" width="450" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Jun 2014 17:28:10 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Categorical-scatterplots-similar-to-PRISM/m-p/140105#M5298</guid>
      <dc:creator>Jay54</dc:creator>
      <dc:date>2014-06-12T17:28:10Z</dc:date>
    </item>
  </channel>
</rss>

