<?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: Thanksgiving Turkey Crown in Graphics Programming</title>
    <link>https://communities.sas.com/t5/Graphics-Programming/Fun-With-SAS-ODS-Graphics-Thanksgiving-Turkey-Crown/m-p/979479#M25731</link>
    <description>&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Screenshot 2025-11-25 090633.png" style="width: 963px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/111548i223EC226BB79D0FE/image-size/large?v=v2&amp;amp;px=999" role="button" title="Screenshot 2025-11-25 090633.png" alt="Screenshot 2025-11-25 090633.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
    <pubDate>Tue, 25 Nov 2025 02:37:37 GMT</pubDate>
    <dc:creator>AungPyae</dc:creator>
    <dc:date>2025-11-25T02:37:37Z</dc:date>
    <item>
      <title>Fun With SAS ODS Graphics: Thanksgiving Turkey Crown</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Fun-With-SAS-ODS-Graphics-Thanksgiving-Turkey-Crown/m-p/952140#M25161</link>
      <description>&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="ThanksgivingTurkeyCrown.png" style="width: 640px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/102589iBFD2BDF86A6C2032/image-size/large?v=v2&amp;amp;px=999" role="button" title="ThanksgivingTurkeyCrown.png" alt="ThanksgivingTurkeyCrown.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Here's a SAS ODS Graphics (GTL) take on those &lt;A href="https://www.google.com/search?q=turkey+headband+craft" target="_self"&gt;Turkey headband craft projects for kids&lt;/A&gt;. Happy Thanksgiving, all!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;* Fun With SAS ODS Graphics: Thanksgiving Turkey Crown
  Inspired by turkey headband craft for kids at etsy.com/listing/1077344850/thanksgiving-turkey-paper-crown-kids;

data feathers;                                * Generate angles, x/y points for 7 feathers;
r=535;
retain fxo 711.5 fyo 615;                     * Triangles originate at x=711.5, y=615; 
do aDeg=180 to 360 by 180/7;                  * aDeg is angle in degrees; 
  aRad=2*constant("pi")*(aDeg/360);           * aRad is angle in radians;
  fx=r*cos(aRad)+711.5;                       * Compute x,y coordinates;
  fy=r*sin(aRad)+615;              
  c+1;                                        * Assign 1 of 4 colors (will cycle thru them);
  color=mod(c-1,4);  
  output;
end;
                                              * Generate polygon points for feathers (triangles);                     
data featherspolygons(keep=polyfid polyfx polyfy color);
set feathers;
retain pfx pfy;
if _n_&amp;gt;1 then do;
  polyfid+1; polyfx=pfx; polyfy=pfy; output; polyfx=fx; polyfy=fy; output; polyfx=711.5; polyfy=615; output; end;
pfx=fx; pfy=fy;
                                              * Generate points, lengths, slopes for ellipses to gently round ends of triangular feathers;                     
data feathersellipses(keep=ellipsefid ellipsefx ellipsefy ellipseslope major minor color);
set feathers;
retain pfx pfy;
if _n_&amp;gt;1 then do;
  ellipseslope=(fy-pfy)/(fx-pfx); ellipsefid+1; ellipsefx=(fx+pfx)/2; ellipsefy=(fy+pfy)/2; major=sqrt((fy-pfy)**2+(fx-pfx)**2)/2; minor=60; output; end;
pfx=fx; pfy=fy;

data polybeak;                                * Generate polygon points for beak (triangle);
polybid=1; polybx=641; polyby=660; output; polybx=782; output; polybx=711.5; polyby=750; output;

data polyheadband;                            * Generate polygon points for headband (rectangle);
id=1;
px=711.5-591.5; py=600; output; px=711.5+591.5; output; py=810; output; px=711.5-591.5; output;

data turkeyparts;                             * Merge all the parts together;
set featherspolygons feathersellipses polybeak polyheadband;

proc template;                                * Use GTL to plot parts of the turkey (above polygons/ellipses + new parts specfied below);
define statgraph turkey;
begingraph / border=false backgroundcolor=silver datacolors=(cx704204 red orange yellow sienna red orange yellow sienna red); * Thanksgiving-themed colors;
layout overlayequated / border=false backgroundcolor=silver wallcolor=silver WALLDISPLAY=(FILL)
  xaxisopts=(display=none thresholdmin=0 thresholdmax=0) yaxisopts=(display=none reverse=true);                           * Reverse y-axis, since x/y points came from MS-Paintbrush (where y=0 is at top instead of bottom);
polygonplot x=px y=py id=id / display=(fill) fillattrs=(color=brown);                                                     * Headband;
ellipseparm semimajor=591.5 semiminor=120 slope=0 xorigin=711.5 yorigin=600 / display=(fill) fillattrs=(color=lightgrey); * Headband top/inside;
polygonplot x=polyfx y=polyfy id=polyfid / display=(fill) group=color;                                                    * Feathers; 
ellipseparm semimajor=352 semiminor=245 slope=0 xorigin=711.5 yorigin=615 / display=(fill) fillattrs=(color=brown);       * Head;
ellipseparm semimajor=30 semiminor=30 slope=0 xorigin=558 yorigin=592 / display=(fill) fillattrs=(color=black);           * Left eye;
ellipseparm semimajor=30 semiminor=30 slope=0 xorigin=865 yorigin=592 / display=(fill) fillattrs=(color=black);           * Right eye;
ellipseparm semimajor=591.5 semiminor=120 slope=0 xorigin=711.5 yorigin=810 / display=(fill) fillattrs=(color=brown);     * Bottom of headband;
ellipseparm semimajor=40 semiminor=90 slope=0 xorigin=711.5 yorigin=790 / display=(fill)  fillattrs=(color=redorange);    * Turkey's 'snood';
polygonplot x=polybx y=polyby id=polybid / display=(fill outline) fillattrs=(color=yellow) outlineattrs=(color=redorange thickness=4pt); * Outlined beak;
ellipseparm semimajor=major semiminor=minor slope=ellipseslope xorigin=ellipsefx yorigin=ellipsefy / group=color display=(fill); * Rounded tips of feathers;
endlayout;
entryfootnote textattrs=(size=24pt weight=bold color=black) "HAPPY THANKSGIVING!";                                        * Greetings!;
endgraph;
end;
run;

proc sgrender data=turkeyparts template=turkey; * Generate chart!;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;ROUGH DRAFT&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="ThanksgivingTurkeyCrownWireframe.png" style="width: 640px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/102590iBA39A35E165ADF8C/image-size/large?v=v2&amp;amp;px=999" role="button" title="ThanksgivingTurkeyCrownWireframe.png" alt="ThanksgivingTurkeyCrownWireframe.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 28 Nov 2024 18:27:43 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Fun-With-SAS-ODS-Graphics-Thanksgiving-Turkey-Crown/m-p/952140#M25161</guid>
      <dc:creator>tc</dc:creator>
      <dc:date>2024-11-28T18:27:43Z</dc:date>
    </item>
    <item>
      <title>Re: Fun With SAS ODS Graphics: Thanksgiving Turkey Crown</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Fun-With-SAS-ODS-Graphics-Thanksgiving-Turkey-Crown/m-p/979479#M25731</link>
      <description>&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Screenshot 2025-11-25 090633.png" style="width: 963px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/111548i223EC226BB79D0FE/image-size/large?v=v2&amp;amp;px=999" role="button" title="Screenshot 2025-11-25 090633.png" alt="Screenshot 2025-11-25 090633.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 25 Nov 2025 02:37:37 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Fun-With-SAS-ODS-Graphics-Thanksgiving-Turkey-Crown/m-p/979479#M25731</guid>
      <dc:creator>AungPyae</dc:creator>
      <dc:date>2025-11-25T02:37:37Z</dc:date>
    </item>
    <item>
      <title>Re: Fun With SAS ODS Graphics: Thanksgiving Turkey Crown</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Fun-With-SAS-ODS-Graphics-Thanksgiving-Turkey-Crown/m-p/979486#M25732</link>
      <description>&lt;P&gt;&lt;SPAN&gt;This post uses a scatter plot with custom markers to display a statistic about the percentage of Americans eating turkey for Thanksgiving.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 25 Nov 2025 03:57:23 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Fun-With-SAS-ODS-Graphics-Thanksgiving-Turkey-Crown/m-p/979486#M25732</guid>
      <dc:creator>DhirenPadiya</dc:creator>
      <dc:date>2025-11-25T03:57:23Z</dc:date>
    </item>
    <item>
      <title>Re: Fun With SAS ODS Graphics: Thanksgiving Turkey Crown</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Fun-With-SAS-ODS-Graphics-Thanksgiving-Turkey-Crown/m-p/979530#M25734</link>
      <description>This was such a fun and clever use of ODS Graphics! I love seeing SAS used in creative, unexpected ways. The way you combined polygons, ellipses, and GTL design elements is brilliant. Thanks for sharing—definitely brightened my day!&lt;BR /&gt;&lt;BR /&gt;data circle_points;&lt;BR /&gt;r=200; cx=0; cy=0;&lt;BR /&gt;do angle=0 to 360 by 15;&lt;BR /&gt;rad=angle*constant("pi")/180;&lt;BR /&gt;x=cx + r*cos(rad);&lt;BR /&gt;y=cy + r*sin(rad);&lt;BR /&gt;output;&lt;BR /&gt;end;&lt;BR /&gt;run;&lt;BR /&gt;&lt;BR /&gt;proc sgplot data=circle_points;&lt;BR /&gt;series x=x y=y / markers;&lt;BR /&gt;run;</description>
      <pubDate>Tue, 25 Nov 2025 12:40:10 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Fun-With-SAS-ODS-Graphics-Thanksgiving-Turkey-Crown/m-p/979530#M25734</guid>
      <dc:creator>janeeumali</dc:creator>
      <dc:date>2025-11-25T12:40:10Z</dc:date>
    </item>
    <item>
      <title>Re: Fun With SAS ODS Graphics: Thanksgiving Turkey Crown</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Fun-With-SAS-ODS-Graphics-Thanksgiving-Turkey-Crown/m-p/979531#M25735</link>
      <description>data poly;&lt;BR /&gt;id=1; x=0; y=0; output;&lt;BR /&gt;x=2; y=5; output;&lt;BR /&gt;x=4; y=0; output;&lt;BR /&gt;run;&lt;BR /&gt;&lt;BR /&gt;proc sgplot data=poly;&lt;BR /&gt;polygon id=id x=x y=y / fill fillattrs=(color=orange);&lt;BR /&gt;run;</description>
      <pubDate>Tue, 25 Nov 2025 12:46:55 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Fun-With-SAS-ODS-Graphics-Thanksgiving-Turkey-Crown/m-p/979531#M25735</guid>
      <dc:creator>Lyka</dc:creator>
      <dc:date>2025-11-25T12:46:55Z</dc:date>
    </item>
    <item>
      <title>Re: Fun With SAS ODS Graphics: Thanksgiving Turkey Crown</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Fun-With-SAS-ODS-Graphics-Thanksgiving-Turkey-Crown/m-p/979533#M25736</link>
      <description>data ell;&lt;BR /&gt;x0=0; y0=0;&lt;BR /&gt;major=60; minor=25; slope=0.3;&lt;BR /&gt;run;&lt;BR /&gt;&lt;BR /&gt;proc sgplot data=ell;&lt;BR /&gt;ellipseparm semimajor=major semiminor=minor&lt;BR /&gt;slope=slope xorigin=x0 yorigin=y0 / fill;&lt;BR /&gt;run;</description>
      <pubDate>Tue, 25 Nov 2025 13:23:00 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Fun-With-SAS-ODS-Graphics-Thanksgiving-Turkey-Crown/m-p/979533#M25736</guid>
      <dc:creator>MarianP</dc:creator>
      <dc:date>2025-11-25T13:23:00Z</dc:date>
    </item>
    <item>
      <title>Re: Fun With SAS ODS Graphics: Thanksgiving Turkey Crown</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Fun-With-SAS-ODS-Graphics-Thanksgiving-Turkey-Crown/m-p/979534#M25737</link>
      <description>data tree;&lt;BR /&gt;id=1; x=0; y=0; output;&lt;BR /&gt;x=5; y=10; output;&lt;BR /&gt;x=10; y=0; output;&lt;BR /&gt;run;&lt;BR /&gt;&lt;BR /&gt;proc sgplot data=tree;&lt;BR /&gt;polygon id=id x=x y=y / fill fillattrs=(color=green);&lt;BR /&gt;run;</description>
      <pubDate>Tue, 25 Nov 2025 13:32:06 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Fun-With-SAS-ODS-Graphics-Thanksgiving-Turkey-Crown/m-p/979534#M25737</guid>
      <dc:creator>Joydeva</dc:creator>
      <dc:date>2025-11-25T13:32:06Z</dc:date>
    </item>
    <item>
      <title>Re: Fun With SAS ODS Graphics: Thanksgiving Turkey Crown</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Fun-With-SAS-ODS-Graphics-Thanksgiving-Turkey-Crown/m-p/979536#M25738</link>
      <description>data badge;&lt;BR /&gt;r=80; cx=0; cy=0;&lt;BR /&gt;do angle=0 to 360 by 5;&lt;BR /&gt;rad=angle*constant("pi")/180;&lt;BR /&gt;x=cx+r*cos(rad);&lt;BR /&gt;y=cy+r*sin(rad);&lt;BR /&gt;output;&lt;BR /&gt;end;&lt;BR /&gt;run;&lt;BR /&gt;&lt;BR /&gt;proc sgplot data=badge;&lt;BR /&gt;polygon id=1 x=x y=y / fill fillattrs=(color=gold);&lt;BR /&gt;run;</description>
      <pubDate>Tue, 25 Nov 2025 14:16:12 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Fun-With-SAS-ODS-Graphics-Thanksgiving-Turkey-Crown/m-p/979536#M25738</guid>
      <dc:creator>Diannealcantara</dc:creator>
      <dc:date>2025-11-25T14:16:12Z</dc:date>
    </item>
    <item>
      <title>Re: Fun With SAS ODS Graphics: Thanksgiving Turkey Crown</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Fun-With-SAS-ODS-Graphics-Thanksgiving-Turkey-Crown/m-p/979537#M25739</link>
      <description>proc template;&lt;BR /&gt;define statgraph basic;&lt;BR /&gt;begingraph;&lt;BR /&gt;layout overlay;&lt;BR /&gt;scatterplot x=x y=y;&lt;BR /&gt;endlayout;&lt;BR /&gt;endgraph;&lt;BR /&gt;end;&lt;BR /&gt;run;&lt;BR /&gt;&lt;BR /&gt;proc sgrender data=sashelp.class template=basic;&lt;BR /&gt;run;</description>
      <pubDate>Tue, 25 Nov 2025 14:22:47 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Fun-With-SAS-ODS-Graphics-Thanksgiving-Turkey-Crown/m-p/979537#M25739</guid>
      <dc:creator>janeaquiatan</dc:creator>
      <dc:date>2025-11-25T14:22:47Z</dc:date>
    </item>
    <item>
      <title>Re: Fun With SAS ODS Graphics: Thanksgiving Turkey Crown</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Fun-With-SAS-ODS-Graphics-Thanksgiving-Turkey-Crown/m-p/979539#M25740</link>
      <description>data eyes;&lt;BR /&gt;x0=0; y0=0; major=30; minor=20; output;&lt;BR /&gt;x0=70; y0=0; major=30; minor=20; output;&lt;BR /&gt;run;&lt;BR /&gt;&lt;BR /&gt;proc sgplot data=eyes;&lt;BR /&gt;ellipseparm semimajor=major semiminor=minor&lt;BR /&gt;xorigin=x0 yorigin=y0 / fill;&lt;BR /&gt;run;</description>
      <pubDate>Tue, 25 Nov 2025 14:59:41 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Fun-With-SAS-ODS-Graphics-Thanksgiving-Turkey-Crown/m-p/979539#M25740</guid>
      <dc:creator>Jaymal</dc:creator>
      <dc:date>2025-11-25T14:59:41Z</dc:date>
    </item>
    <item>
      <title>Re: Fun With SAS ODS Graphics: Thanksgiving Turkey Crown</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Fun-With-SAS-ODS-Graphics-Thanksgiving-Turkey-Crown/m-p/979579#M25741</link>
      <description>&lt;PRE&gt;&lt;CODE class=""&gt;/*===========================================
  1. Create gratitude words with weights
===========================================*/
data gratitude_words;
    length word $20;
    input word $ size_weight;
datalines;
Family      28
Health      26
Friends     30
Hope        22
Kindness    25
Nature      20
Learning    24
Laughter    22
Community   21
Sunshine    19
Comfort     20
Peace       23
Patience    18
Gratitude   32
;
run;

/*===========================================
  2. Assign random XY positions for scatter plot
===========================================*/
data wordcloud;
    set gratitude_words;
    /* random positions in a 0–100 space */
    x = rand("uniform") * 100;
    y = rand("uniform") * 100;

    /* Convert weight to approximate text size */
    text_size = size_weight;

    /* Random pastel colors */
    array colors[5] _temporary_ (1 2 3 4 5);
    color = colors[ceil(rand("uniform")*5)];
run;

/*===========================================
  3. Plot the word cloud
===========================================*/
ods graphics / reset width=10in height=8in noborder;

proc sgplot data=wordcloud noautolegend;
    /* Word cloud using TEXT plot */
    text x=x y=y text=word / 
        textattrs=(weight=bold)
        sizeresponse=text_size sizemin=8 sizemax=32
        colormodel=(blue red violet green orange)
        COLORRESPONSE=color
        ;

    xaxis display=none;
    yaxis display=none;
    title height=20pt "Gratitude Word Cloud";
run;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="SAS gratitude word cloud - HW.png" style="width: 969px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/111585iDAE56BEA9282FAA7/image-size/large?v=v2&amp;amp;px=999" role="button" title="SAS gratitude word cloud - HW.png" alt="SAS gratitude word cloud - HW.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 25 Nov 2025 20:22:11 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Fun-With-SAS-ODS-Graphics-Thanksgiving-Turkey-Crown/m-p/979579#M25741</guid>
      <dc:creator>hw</dc:creator>
      <dc:date>2025-11-25T20:22:11Z</dc:date>
    </item>
    <item>
      <title>Re: Fun With SAS ODS Graphics: Thanksgiving Turkey Crown</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Fun-With-SAS-ODS-Graphics-Thanksgiving-Turkey-Crown/m-p/979584#M25742</link>
      <description>&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="kimseonsaengnim_0-1764116252435.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/111586i6855B5764A3CB75C/image-size/medium?v=v2&amp;amp;px=400" role="button" title="kimseonsaengnim_0-1764116252435.png" alt="kimseonsaengnim_0-1764116252435.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 26 Nov 2025 00:17:44 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Fun-With-SAS-ODS-Graphics-Thanksgiving-Turkey-Crown/m-p/979584#M25742</guid>
      <dc:creator>kimseonsaengnim</dc:creator>
      <dc:date>2025-11-26T00:17:44Z</dc:date>
    </item>
    <item>
      <title>Re: Fun With SAS ODS Graphics: Thanksgiving Turkey Crown</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Fun-With-SAS-ODS-Graphics-Thanksgiving-Turkey-Crown/m-p/979591#M25743</link>
      <description>&lt;PRE&gt;proc sgplot data=sashelp.class;
  highlow x=name low=0 high=height / type=bar fillattrs=(color=steelblue);
run;&lt;/PRE&gt;</description>
      <pubDate>Wed, 26 Nov 2025 04:36:16 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Fun-With-SAS-ODS-Graphics-Thanksgiving-Turkey-Crown/m-p/979591#M25743</guid>
      <dc:creator>MalatJ</dc:creator>
      <dc:date>2025-11-26T04:36:16Z</dc:date>
    </item>
    <item>
      <title>Re: Fun With SAS ODS Graphics: Thanksgiving Turkey Crown</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Fun-With-SAS-ODS-Graphics-Thanksgiving-Turkey-Crown/m-p/979633#M25745</link>
      <description>&lt;P&gt;proc template;&lt;BR /&gt;define statgraph turkey;&lt;BR /&gt;begingraph / border=false backgroundcolor=#f4f2e9&lt;BR /&gt;datacolors=(#8B4513 #CC5500 #E3963E #FFD97D #7A5230&lt;BR /&gt;#CC5500 #E3963E #FFD97D #7A5230);&lt;/P&gt;&lt;P&gt;layout overlayequated / border=false&lt;BR /&gt;backgroundcolor=#f4f2e9 wallcolor=#f4f2e9&lt;BR /&gt;WALLDISPLAY=(FILL)&lt;BR /&gt;xaxisopts=(display=none thresholdmin=0 thresholdmax=0)&lt;BR /&gt;yaxisopts=(display=none reverse=true);&lt;/P&gt;&lt;P&gt;polygonplot x=px y=py id=id / display=(fill)&lt;BR /&gt;fillattrs=(color=#7A5230); /* Headband */&lt;/P&gt;&lt;P&gt;ellipseparm semimajor=591.5 semiminor=120 slope=0&lt;BR /&gt;xorigin=711.5 yorigin=600 / display=(fill)&lt;BR /&gt;fillattrs=(color=#d9d5cc); /* Headband inner */&lt;/P&gt;&lt;P&gt;polygonplot x=polyfx y=polyfy id=polyfid / display=(fill) group=color;&lt;/P&gt;&lt;P&gt;ellipseparm semimajor=352 semiminor=245 slope=0&lt;/P&gt;</description>
      <pubDate>Wed, 26 Nov 2025 22:17:15 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Fun-With-SAS-ODS-Graphics-Thanksgiving-Turkey-Crown/m-p/979633#M25745</guid>
      <dc:creator>fatimacanobas04</dc:creator>
      <dc:date>2025-11-26T22:17:15Z</dc:date>
    </item>
    <item>
      <title>Re: Fun With SAS ODS Graphics: Thanksgiving Turkey Crown</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Fun-With-SAS-ODS-Graphics-Thanksgiving-Turkey-Crown/m-p/979636#M25746</link>
      <description>&lt;P&gt;&lt;SPAN&gt;This post uses a scatter plot with custom markers to display a statistic about the percentage of Americans eating turkey for Thanksgiving.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 27 Nov 2025 06:08:55 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Fun-With-SAS-ODS-Graphics-Thanksgiving-Turkey-Crown/m-p/979636#M25746</guid>
      <dc:creator>Ratnakar</dc:creator>
      <dc:date>2025-11-27T06:08:55Z</dc:date>
    </item>
  </channel>
</rss>

