<?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: Fun With SAS ODS Graphics: MOM Tattoo in Graphics Programming</title>
    <link>https://communities.sas.com/t5/Graphics-Programming/Fun-With-SAS-ODS-Graphics-MOM-Tattoo/m-p/366031#M12737</link>
    <description>&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Hi &lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/4628"&gt;@tc&lt;/a&gt;, if you are looking for ideas, it liked this challenge to proc gtile taken from&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://www.weforum.org/agenda/2017/03/worlds-biggest-economies-in-2017/" target="_blank"&gt;https://www.weforum.org/agenda/2017/03/worlds-biggest-economies-in-2017/&lt;/A&gt;&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/9320i0063DB2DB42109A4/image-size/original?v=1.0&amp;amp;px=-1" alt="aaa1.PNG" title="aaa1.PNG" border="0" /&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The "rest of the world" legend entry is badly named. This would leave only Antartica.&lt;/P&gt;
&lt;P&gt;"Small countries" or "Countries with less than 0.39%" or "160 smallest countries" or similar would be more accurate.&lt;/P&gt;</description>
    <pubDate>Mon, 12 Jun 2017 02:20:27 GMT</pubDate>
    <dc:creator>ChrisNZ</dc:creator>
    <dc:date>2017-06-12T02:20:27Z</dc:date>
    <item>
      <title>Fun With SAS ODS Graphics: MOM Tattoo</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Fun-With-SAS-ODS-Graphics-MOM-Tattoo/m-p/358522#M12459</link>
      <description>&lt;P&gt;&lt;IMG src="https://communities.sas.com/t5/image/serverpage/image-id/8867i2685CFC08B29B20A/image-size/original?v=1.0&amp;amp;px=-1" border="0" alt="SasMomTatto.png" title="SasMomTatto.png" /&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Happy Mother's Day! Thanks to Pavel Panchekha's &lt;A href="https://pavpanchekha.com/blog/heart-polar-coordinates.html" target="_self"&gt;How to Draw a Heart in Polar Coordinates&lt;/A&gt; for the formula, Rick Wicklin's &lt;A href="http://blogs.sas.com/content/iml/2015/12/16/polar-rose.html" target="_self"&gt;Lo, how a polar rose e'er blooming&lt;/A&gt; for SAS code, and COLOURlovers for the &lt;A href="http://www.colourlovers.com/color/F7CEB5/Comic_skin_tone" target="_self"&gt;Comic Skin Tone&lt;/A&gt; color&amp;nbsp;code!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;SAS CODE&lt;/STRONG&gt;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;* Fun With SAS ODS Graphics: Mom Tattoo;

data Heart;                                                     * Generate Data;
do t = 0 to 2*constant("pi") by 0.01;                           * Heart;
  r=sin(t)*sqrt(abs(cos(t)))/(sin(t)+7/5)-2*sin(t)+2;
  x = r*cos(t);        
  y = r*sin(t);
  id=1;
  output;
end;
x=.; y=.;
xMarker=-1.85; yMarker=-3.6; output; xmarker=.; ymarker=.;      * Arrow;
xArrowO=-1.85; yArrowO=-3.6; xArrow=2.5; yArrow=.75; output; xArrowO=.; yArrowO=.; xArrow=.; yArrow=.;
xArrowO2=1.25; yArrowO2=-.5; xArrow2=2.5; yArrow2=.75; output; xArrowO2=.; yArrowO2=.; xArrow2=.; yArrow2=.;
xText=0; yText=-1.25; Text='MOM'; output;                       * Text;

proc sgplot data=Heart aspect=1 nowall noautolegend noborder;   * Generate "Mom" tattoo;
styleattrs backcolor=cxF7CEB5;                                  * Change to match your own skin color!;
vector x=xArrow y=yArrow / 
       xorigin=xArrowO yorigin=yArrowO lineattrs=(color=darkgreen thickness=10pt) arrowheadshape=barbed;
scatter x=xMarker y=yMarker / markerattrs=(symbol=circlefilled size=20pt color=darkgreen);
series x=x y=y / lineattrs=(color=black thickness=5pt);
polygon x=x y=y id=id / fill fillattrs=(color=red);
vector x=xArrow2 y=yArrow2 / 
       xorigin=xArrowO2 yorigin=yArrowO2 lineattrs=(color=darkgreen thickness=10pt) arrowheadshape=barbed;
text x=xText y=yText text=Text / backlight=1 strip textattrs=(color=black size=72pt weight=bold);
xaxis display=none min=-2.4 max=2.5 offsetmax=.001 offsetmin=.001; 
yaxis display=none min=-4.2 max=1.3 offsetmax=.001 offsetmin=.001;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 14 May 2017 05:17:38 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Fun-With-SAS-ODS-Graphics-MOM-Tattoo/m-p/358522#M12459</guid>
      <dc:creator>tc</dc:creator>
      <dc:date>2017-05-14T05:17:38Z</dc:date>
    </item>
    <item>
      <title>Re: Fun With SAS ODS Graphics: MOM Tattoo</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Fun-With-SAS-ODS-Graphics-MOM-Tattoo/m-p/359686#M12530</link>
      <description>&lt;P&gt;Nice use of backlight! &amp;nbsp;&lt;img id="smileyhappy" class="emoticon emoticon-smileyhappy" src="https://communities.sas.com/i/smilies/16x16_smiley-happy.png" alt="Smiley Happy" title="Smiley Happy" /&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 18 May 2017 15:27:58 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Fun-With-SAS-ODS-Graphics-MOM-Tattoo/m-p/359686#M12530</guid>
      <dc:creator>Jay54</dc:creator>
      <dc:date>2017-05-18T15:27:58Z</dc:date>
    </item>
    <item>
      <title>Re: Fun With SAS ODS Graphics: MOM Tattoo</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Fun-With-SAS-ODS-Graphics-MOM-Tattoo/m-p/366031#M12737</link>
      <description>&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Hi &lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/4628"&gt;@tc&lt;/a&gt;, if you are looking for ideas, it liked this challenge to proc gtile taken from&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://www.weforum.org/agenda/2017/03/worlds-biggest-economies-in-2017/" target="_blank"&gt;https://www.weforum.org/agenda/2017/03/worlds-biggest-economies-in-2017/&lt;/A&gt;&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/9320i0063DB2DB42109A4/image-size/original?v=1.0&amp;amp;px=-1" alt="aaa1.PNG" title="aaa1.PNG" border="0" /&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The "rest of the world" legend entry is badly named. This would leave only Antartica.&lt;/P&gt;
&lt;P&gt;"Small countries" or "Countries with less than 0.39%" or "160 smallest countries" or similar would be more accurate.&lt;/P&gt;</description>
      <pubDate>Mon, 12 Jun 2017 02:20:27 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Fun-With-SAS-ODS-Graphics-MOM-Tattoo/m-p/366031#M12737</guid>
      <dc:creator>ChrisNZ</dc:creator>
      <dc:date>2017-06-12T02:20:27Z</dc:date>
    </item>
  </channel>
</rss>

