<?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: Annotating a Scatter plot with multiple Star Plots, rose plots or polar plots in Graphics Programming</title>
    <link>https://communities.sas.com/t5/Graphics-Programming/Annotating-a-Scatter-plot-with-multiple-Star-Plots-rose-plots-or/m-p/336745#M11686</link>
    <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13585"&gt;@GraphGuy&lt;/a&gt; You cheated! You are supposed to move and then draw!&lt;/P&gt;
&lt;P&gt;After all these years, I never thought of using function pie to do it in one step.&lt;/P&gt;
&lt;P&gt;There's always new tricks to learn...&lt;/P&gt;</description>
    <pubDate>Tue, 28 Feb 2017 21:33:00 GMT</pubDate>
    <dc:creator>ChrisNZ</dc:creator>
    <dc:date>2017-02-28T21:33:00Z</dc:date>
    <item>
      <title>Annotating a Scatter plot with multiple Star Plots, rose plots or polar plots</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Annotating-a-Scatter-plot-with-multiple-Star-Plots-rose-plots-or/m-p/335676#M11663</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I would like to use star plots, rose plots or polar plots on a scatter plot.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;A search with google has not turned up a solution (i did find out how to produce individual star plots).&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If someone could point me in the right direction, I would really appreciate it.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Best&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Dan&lt;/P&gt;</description>
      <pubDate>Fri, 24 Feb 2017 17:49:18 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Annotating-a-Scatter-plot-with-multiple-Star-Plots-rose-plots-or/m-p/335676#M11663</guid>
      <dc:creator>Dan4</dc:creator>
      <dc:date>2017-02-24T17:49:18Z</dc:date>
    </item>
    <item>
      <title>Re: Annotating a Scatter plot with multiple Star Plots, rose plots or polar plots</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Annotating-a-Scatter-plot-with-multiple-Star-Plots-rose-plots-or/m-p/336077#M11670</link>
      <description>&lt;P&gt;You need to tell us more. what exactly do you want? what did you find? why isn't it suitable?&lt;/P&gt;</description>
      <pubDate>Mon, 27 Feb 2017 00:53:10 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Annotating-a-Scatter-plot-with-multiple-Star-Plots-rose-plots-or/m-p/336077#M11670</guid>
      <dc:creator>ChrisNZ</dc:creator>
      <dc:date>2017-02-27T00:53:10Z</dc:date>
    </item>
    <item>
      <title>Re: Annotating a Scatter plot with multiple Star Plots, rose plots or polar plots</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Annotating-a-Scatter-plot-with-multiple-Star-Plots-rose-plots-or/m-p/336599#M11678</link>
      <description>&lt;P&gt;Good Morning,&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;As requested here is some more detail.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I would like to create a bivariate scatter plot based on two continuous variables.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Rather than a simple dot or star representing the point, or a bubble which could differ in size based on a third variable, I would like to use a starplot (rose or polar plot) which would change shape based on 7 or 8 other variables.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The starchart procedure (at least as I understand it) can produce the starplots, but they are not organized on the plot based on two other continuous variables.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;My thought would be to use gplot to create the scatter plot, but use annotate to create the starplot that would then be placed on the scatter plot at the appropriate point.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I hope that helps.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Best&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Dan&lt;/P&gt;</description>
      <pubDate>Tue, 28 Feb 2017 15:32:58 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Annotating-a-Scatter-plot-with-multiple-Star-Plots-rose-plots-or/m-p/336599#M11678</guid>
      <dc:creator>Dan4</dc:creator>
      <dc:date>2017-02-28T15:32:58Z</dc:date>
    </item>
    <item>
      <title>Re: Annotating a Scatter plot with multiple Star Plots, rose plots or polar plots</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Annotating-a-Scatter-plot-with-multiple-Star-Plots-rose-plots-or/m-p/336696#M11682</link>
      <description>&lt;P&gt;Here's one way to do it ...&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;data foo;&lt;BR /&gt;input x y val1 val2 val3 val4 val5 val6 val7;&lt;BR /&gt;datalines;&lt;BR /&gt;40 60 1 1 1 1 1 1 1 &lt;BR /&gt;20 76 1 2 3 4 5 6 7&lt;BR /&gt;60 20 1 2 1 2 3 2 1&lt;BR /&gt;;&lt;BR /&gt;run;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;data anno_stars; set foo;&lt;BR /&gt;xsys='2'; ysys='2'; hsys='3'; when='a';&lt;BR /&gt;size_factor=1.8;&lt;BR /&gt;function='pie'; rotate=0; color='blue';&lt;BR /&gt;angle=(360/7)*1; size=size_factor*val1; output;&lt;BR /&gt;angle=(360/7)*2; size=size_factor*val2; output;&lt;BR /&gt;angle=(360/7)*3; size=size_factor*val3; output;&lt;BR /&gt;angle=(360/7)*4; size=size_factor*val4; output;&lt;BR /&gt;angle=(360/7)*5; size=size_factor*val5; output;&lt;BR /&gt;angle=(360/7)*6; size=size_factor*val6; output;&lt;BR /&gt;angle=(360/7)*7; size=size_factor*val7; output;&lt;BR /&gt;run;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;goptions gunit=pct;&lt;BR /&gt;axis1 order=(0 to 100 by 20);&lt;BR /&gt;axis2 order=(0 to 100 by 20);&lt;BR /&gt;symbol1 value=circle height=2.0 color=black interpol=none;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;proc gplot data=foo anno=anno_stars;&lt;BR /&gt;plot y*x=1 / vaxis=axis1 haxis=axis2;&lt;BR /&gt;run;&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/7494i65A64AD4595F1BFB/image-size/original?v=1.0&amp;amp;px=-1" border="0" alt="gplot_star.png" title="gplot_star.png" /&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 28 Feb 2017 19:48:37 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Annotating-a-Scatter-plot-with-multiple-Star-Plots-rose-plots-or/m-p/336696#M11682</guid>
      <dc:creator>GraphGuy</dc:creator>
      <dc:date>2017-02-28T19:48:37Z</dc:date>
    </item>
    <item>
      <title>Re: Annotating a Scatter plot with multiple Star Plots, rose plots or polar plots</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Annotating-a-Scatter-plot-with-multiple-Star-Plots-rose-plots-or/m-p/336745#M11686</link>
      <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13585"&gt;@GraphGuy&lt;/a&gt; You cheated! You are supposed to move and then draw!&lt;/P&gt;
&lt;P&gt;After all these years, I never thought of using function pie to do it in one step.&lt;/P&gt;
&lt;P&gt;There's always new tricks to learn...&lt;/P&gt;</description>
      <pubDate>Tue, 28 Feb 2017 21:33:00 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Annotating-a-Scatter-plot-with-multiple-Star-Plots-rose-plots-or/m-p/336745#M11686</guid>
      <dc:creator>ChrisNZ</dc:creator>
      <dc:date>2017-02-28T21:33:00Z</dc:date>
    </item>
    <item>
      <title>Re: Annotating a Scatter plot with multiple Star Plots, rose plots or polar plots</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Annotating-a-Scatter-plot-with-multiple-Star-Plots-rose-plots-or/m-p/337023#M11696</link>
      <description>&lt;P&gt;Thank you Robert,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This is excellent!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;It will do the job!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Any ideas aboutt changing the bars to stars?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you again.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Best&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Dan4&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 01 Mar 2017 15:36:14 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Annotating-a-Scatter-plot-with-multiple-Star-Plots-rose-plots-or/m-p/337023#M11696</guid>
      <dc:creator>Dan4</dc:creator>
      <dc:date>2017-03-01T15:36:14Z</dc:date>
    </item>
  </channel>
</rss>

