<?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: Cubs logo &amp;amp; waterfall chart of Cubs lead throughout World Series in Graphics Programming</title>
    <link>https://communities.sas.com/t5/Graphics-Programming/Fun-With-SAS-ODS-Graphics-Cubs-logo-amp-waterfall-chart-of-Cubs/m-p/309402#M10868</link>
    <description>&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;How to create the banner&lt;BR /&gt;&lt;BR /&gt;If you type xplo GoaCUBSaGO on any command line in the old&lt;BR /&gt;text editor, the text will be written to the paste buffer.&lt;BR /&gt;You can then paste it antwhere you want.&lt;BR /&gt;&lt;BR /&gt;%macro xplo ( AFSTR1 )/cmd ;

/*-----------------------------------------*\
|  xplo GO CUBS GO)                 |
|  lower case letters produce spaces        |
\*-----------------------------------------*/

note;notesubmit '%xploa';

%mend xplo;

%macro xploa
/  des = "Exploded Banner for Printouts";

options noovp;
title;
footnote;

%let uj=1;

%do %while(%scan(&amp;amp;afstr1.,&amp;amp;uj) ne );
   %let uj=%eval(&amp;amp;uj+1);
   %put uj= &amp;amp;uj;
%end;

data _null_;
   rc=filename('__xplo', "%sysfunc(pathname(work))/__xplo");
   if rc = 0 and fexist('__xplo') then rc=fdelete('__xplo');
   rc=filename('__xplo');

   rc=filename('__clp', "%sysfunc(pathname(work))/__clp");
   if rc = 0 and fexist('__clp') then rc=fdelete('__clp');
   rc=filename('__clp');
run;

filename ft15f001 "%sysfunc(pathname(work))/__xplo";

* format for proc explode;
data _null_;
file ft15f001;
   %do ui=1 %to %eval(&amp;amp;uj-1);
      put "D";
      put " %scan(&amp;amp;afstr1.,&amp;amp;ui)";
   %end;
run;

filename __clp "%sysfunc(pathname(work))/__clp";

proc printto print=__clp;
run;quit;

proc explode;
run;

filename ft15f001 clear;
run;quit;
proc printto;
run;quit;

filename __dm clipbrd ;

   data _null_;
     infile __clp;
     file __dm;
     input;
     putlog _infile_;
     put _infile_;
   run;

filename __dm clear;

%mend xploa;&lt;/CODE&gt;&lt;/PRE&gt;</description>
    <pubDate>Fri, 04 Nov 2016 20:09:21 GMT</pubDate>
    <dc:creator>rogerjdeangelis</dc:creator>
    <dc:date>2016-11-04T20:09:21Z</dc:date>
    <item>
      <title>Fun With SAS ODS Graphics: Cubs logo &amp; waterfall chart of Cubs lead throughout World Series game 7</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Fun-With-SAS-ODS-Graphics-Cubs-logo-amp-waterfall-chart-of-Cubs/m-p/309263#M10858</link>
      <description>&lt;P&gt;Oops. Revised post below.&lt;/P&gt;</description>
      <pubDate>Fri, 04 Nov 2016 14:30:53 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Fun-With-SAS-ODS-Graphics-Cubs-logo-amp-waterfall-chart-of-Cubs/m-p/309263#M10858</guid>
      <dc:creator>tc</dc:creator>
      <dc:date>2016-11-04T14:30:53Z</dc:date>
    </item>
    <item>
      <title>Fun With SAS ODS Graphics: Cubs logo &amp; waterfall chart of Cubs lead throughout World Series game 7</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Fun-With-SAS-ODS-Graphics-Cubs-logo-amp-waterfall-chart-of-Cubs/m-p/309261#M10860</link>
      <description>&lt;P&gt;&lt;IMG src="https://communities.sas.com/t5/image/serverpage/image-id/5638i647C2F945FF254B4/image-size/original?v=v2&amp;amp;px=-1" border="0" alt="CUBBIESLOGO.png" title="CUBBIESLOGO.png" /&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Well, &lt;A href="https://twitter.com/Cubs/status/794128257717145600" target="_blank"&gt;today's the day&lt;/A&gt; for the big parade here in Chicago for the World Series Champion Chicago Cubs, so here are a couple of short SAS programs to commemorate this once-every-108-years celebration. The first uses GTL statements - ellipseparm, polygonplot, and textplot - to chart the Cubs logo. And the second is an SGPLOT waterfall chart take on &lt;A href="http://m.mlb.com/gameday/cubs-vs-indians/2016/11/02/487637/?partnerId=LR_box#game_tab=box,game=487637,game_state=final" target="_self"&gt;box score data&lt;/A&gt; from Chicago's game 7 victory over Cleveland, which shows the ups-and-downs of the Cubs lead over the Indians for every half-inning.&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/5639i542C4A56DF9F8489/image-size/original?v=v2&amp;amp;px=-1" border="0" alt="GAME7BOXSCORE.png" title="GAME7BOXSCORE.png" /&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;CODE - CUBS LOGO&lt;/STRONG&gt;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;* SAS ODS Graphics take on Chicago Cubs logo (Cubs color codes from teamcolorcodes.com);

data cubslogopoints; 
input X Y@@;                       * Polygon points to mask part of red circle (make it "C" in "CUBS");
X=X-273; Y=Y-273;                  * Adjust x/y (model logo was 546x546 w/origin at 0,0);
ubs="UBS"; ubsX=187-273; ubsY=0;   * Text string, x/y points for "UBS" part of "CUBS";
tm="TM"; tmX=400-270; tmY=273-325; * Text string, x/y points for "TM";
cards;
363 219 414 168 453 195 453 351 414 378 363 330
;
ods listing image_dpi=300 gpath='/folders/myfolders';
ods graphics on / reset antialias width=5in height=5in imagename="CUBBIESLOGO";
proc template;
 define statgraph ellipseparm;
 begingraph; 
   entrytitle "GO, CUBS, GO!";     
   layout overlayequated / equatetype=square  
     xaxisopts=(label=(none) offsetmin=0.05 offsetmax=0.05)
     yaxisopts=(label=(none) offsetmin=0.05 offsetmax=0.05);
     ellipseparm semimajor=273 semiminor=273 slope=0       /* Blue circle */
       xorigin=0 yorigin=0 / fillattrs=(color=CX0E3386) display=(fill);
     ellipseparm semimajor=202 semiminor=202 slope=0      /* White circle */
       xorigin=0 yorigin=0 / fillattrs=(color=CXffffff) display=(fill);
     ellipseparm semimajor=176 semiminor=176 slope=0      /* Red circle */
       xorigin=0 yorigin=0 / fillattrs=(color=CXD12325) display=(fill);
     ellipseparm semimajor=106 semiminor=106 slope=0      /* White Center */
       xorigin=0 yorigin=0 / fillattrs=(color=CXffffff) display=(fill);
     polygonplot x=X y=Y id=ubs /                         /* Polygon makes red circle a "C" */
       display=(fill) fillattrs=(color=CXffffff);
     textplot x=ubsX y=ubsY text=ubs /                    /* Plot red text "UBS" inside red circle */
       position=right textattrs=(color=CXD12325 size=54pt weight=bold);
     textplot x=tmX y=tmY text=tm /                       /* Plot blue text "TM" under "CUBS" */
       position=bottomright textattrs=(color=CX0E3386 size=12pt weight=bold);
   endlayout;
  endGraph;
 end;
run;
proc sgrender data=cubslogopoints template=ellipseparm;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;CODE - WATERFALL CHART&lt;/STRONG&gt;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;* SAS ODS Graphics waterfall take on Cubs lead over Indians in Game 7 of World Series;

data boxscore(keep=Team Inning Scored);      /* Read box score data */
array Runs{10} Runs1-Runs10;
input Team $char18. Runs1-Runs10;
do Inning=1 to 10;
  Scored=Runs(Inning);
 output;
end;
cards;
Chicago Cubs      1 0 0 2 2 1 0 0 0 2
Cleveland Indians 0 0 1 0 2 0 0 3 0 1
;
proc sort data=boxscore;
by inning team;

data boxscorewaterfall;                      /* Transform into half-innning obs for waterfall plot */
set boxscore;
by inning;
if team=:"Chicago" then do;
  inningx=put(inning,3.);                    /* Identify inning for xaxistable */
  chicago+scored;                            /* Keep running score for teams */
  BATTING='CHC';                             /* Note who was at bat in half inning for xaxistable */
  Lead=+scored;                              /* Add Chicago's runs to leads, subtract Cleveland's */
  halfinning=inning;                         /* Identify half-inning for waterfall category variable */
  topinning=1;                               /* Indicate whether top of inning (used to assign colors */
  end; 
else do;
  Cleveland+scored;
  BATTING='CLE'; 
  Lead=-scored; 
  halfinning=inning+.5; 
  topinning=0; 
  end;                                       /* Compute end of half-inning scores for xaxistable */
 SCORE=compress(put(chicago,2.)||'-'||put(cleveland,2.)); 

data clrresp;                                /* Color increases/decreases to lead as green/red */
retain id "myid";
length min $ 5 max $ 5 color $20;
input min $ max $ color $;
datalines;
1 1 lightgreen
0 0 lightred
;
                                              /* Create the waterfall chart! */
ods listing image_dpi=300 gpath='/folders/myfolders';
ods graphics on / reset antialias width=8in height=5in imagename="GAME7BOXSCORE";

proc sgplot data=boxscorewaterfall rattrmap=clrresp noautolegend;
title "2016 WORLD SERIES GAME 7: WATERFALL CHART OF CUBS LEAD OVER INDIANS";
waterfall category=halfinning response=Lead / datalabel rattrid=myid colorresponse=topinning;
xaxis display=none; 
yaxis display=(noline) grid label="CHICAGO LEAD";
xaxistable inningx batting score / nolabel;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 04 Nov 2016 13:49:04 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Fun-With-SAS-ODS-Graphics-Cubs-logo-amp-waterfall-chart-of-Cubs/m-p/309261#M10860</guid>
      <dc:creator>tc</dc:creator>
      <dc:date>2016-11-04T13:49:04Z</dc:date>
    </item>
    <item>
      <title>Re: Fun With SAS ODS Graphics: Cubs logo &amp; waterfall chart of Cubs lead throughout World Series</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Fun-With-SAS-ODS-Graphics-Cubs-logo-amp-waterfall-chart-of-Cubs/m-p/309280#M10861</link>
      <description>&lt;P&gt;Here's an alternative rendering of the box score data:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data boxscore(keep=Team Inning Scored Score);      /* Read box score data */
array Runs{10} Runs1-Runs10;
input Team $char18. Runs1-Runs10;
Score = 0;
do Inning=1 to 10;
  Scored=Runs(Inning);
  Score + Scored;
 output;
end;
cards;
Chicago Cubs      1 0 0 2 2 1 0 0 0 2
Cleveland Indians 0 0 1 0 2 0 0 3 0 1
;

title "Game 7 of 2016 World Series";
title2 "Score at End of Each Inning";
proc sgplot data=boxscore;
styleattrs datacolors=(CX0E3386 /* Cubs blue */
                       CXB5404B); /* Indians red */
step x=Inning y=Score / lineattrs=(thickness=3)
   curvelabel markers group=Team;
yaxis values=(0 to 8) grid;
xaxis values=(1 to 10) grid;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&lt;IMG src="https://communities.sas.com/t5/image/serverpage/image-id/5641i3AA1585242A0F18F/image-size/original?v=v2&amp;amp;px=-1" border="0" alt="WorldSeries.png" title="WorldSeries.png" /&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 04 Nov 2016 14:12:52 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Fun-With-SAS-ODS-Graphics-Cubs-logo-amp-waterfall-chart-of-Cubs/m-p/309280#M10861</guid>
      <dc:creator>Rick_SAS</dc:creator>
      <dc:date>2016-11-04T14:12:52Z</dc:date>
    </item>
    <item>
      <title>Re: Fun With SAS ODS Graphics: Cubs logo &amp; waterfall chart of Cubs lead throughout World Series</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Fun-With-SAS-ODS-Graphics-Cubs-logo-amp-waterfall-chart-of-Cubs/m-p/309283#M10862</link>
      <description>&lt;P&gt;Oh, my. Baseball and statistics, America's great pastimes &lt;span class="lia-unicode-emoji" title=":winking_face:"&gt;😉&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 04 Nov 2016 14:17:01 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Fun-With-SAS-ODS-Graphics-Cubs-logo-amp-waterfall-chart-of-Cubs/m-p/309283#M10862</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2016-11-04T14:17:01Z</dc:date>
    </item>
    <item>
      <title>Re: Fun With SAS ODS Graphics: Cubs logo &amp; waterfall chart of Cubs lead throughout World Series</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Fun-With-SAS-ODS-Graphics-Cubs-logo-amp-waterfall-chart-of-Cubs/m-p/309295#M10863</link>
      <description>&lt;P&gt;Love it&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I work in DC but travelled to Chicago for the game. Love your graphics.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I used proc explode. Wish SAS would offer an improved banner like the ones you can get on the web. Those banners use mutiple different keys to form a more readable condensed banner.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt; ***    ***       ***   *   *  ****    ***       ***    ***
*   *  *   *     *   *  *   *   *  *  *   *     *   *  *   *
*      *   *     *      *   *   *  *   *        *      *   *
* ***  *   *     *      *   *   ***     *       * ***  *   *
*   *  *   *     *      *   *   *  *     *      *   *  *   *
*   *  *   *     *   *  *   *   *  *  *   *     *   *  *   *
 ***    ***       ***    ***   ****    ***       ***    ***&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Fri, 04 Nov 2016 14:28:20 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Fun-With-SAS-ODS-Graphics-Cubs-logo-amp-waterfall-chart-of-Cubs/m-p/309295#M10863</guid>
      <dc:creator>rogerjdeangelis</dc:creator>
      <dc:date>2016-11-04T14:28:20Z</dc:date>
    </item>
    <item>
      <title>Re: Fun With SAS ODS Graphics: Cubs logo &amp; waterfall chart of Cubs lead throughout World Series</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Fun-With-SAS-ODS-Graphics-Cubs-logo-amp-waterfall-chart-of-Cubs/m-p/309400#M10867</link>
      <description>&lt;P&gt;The banner looks a lot better in the old text editor widow with 8pt sasfont.&lt;/P&gt;&lt;P&gt;I use the banner to separate macros in my code.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If you type "xplo GOaCUBSaGO" on any clean command line in any window ie&lt;/P&gt;&lt;P&gt;program, log, output, note .. The banner will placed in the paste buffer.&lt;/P&gt;&lt;P&gt;The you can just paste it anywhere. The code is below.&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;%macro xplo ( AFSTR1 )/cmd ;

/*-----------------------------------------*\
|  xplo GOaCUBSaGO                          |
|  lower case letters produce spaces        |
\*-----------------------------------------*/

note;notesubmit '%xploa';

%mend xplo;

%macro xploa
/  des = "Exploded Banner for Printouts";

options noovp;
title;
footnote;

%let uj=1;

%do %while(%scan(&amp;amp;afstr1.,&amp;amp;uj) ne );
   %let uj=%eval(&amp;amp;uj+1);
   %put uj= &amp;amp;uj;
%end;

data _null_;
   rc=filename('__xplo', "%sysfunc(pathname(work))/__xplo");
   if rc = 0 and fexist('__xplo') then rc=fdelete('__xplo');
   rc=filename('__xplo');

   rc=filename('__clp', "%sysfunc(pathname(work))/__clp");
   if rc = 0 and fexist('__clp') then rc=fdelete('__clp');
   rc=filename('__clp');
run;

filename ft15f001 "%sysfunc(pathname(work))/__xplo";

* format for proc explode;
data _null_;
file ft15f001;
   %do ui=1 %to %eval(&amp;amp;uj-1);
      put "D";
      put " %scan(&amp;amp;afstr1.,&amp;amp;ui)";
   %end;
run;

filename __clp "%sysfunc(pathname(work))/__clp";

proc printto print=__clp;
run;quit;

proc explode;
run;

filename ft15f001 clear;
run;quit;
proc printto;
run;quit;

filename __dm clipbrd ;

   data _null_;
     infile __clp;
     file __dm;
     input;
     putlog _infile_;
     put _infile_;
   run;

filename __dm clear;

%mend xploa;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 04 Nov 2016 20:05:05 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Fun-With-SAS-ODS-Graphics-Cubs-logo-amp-waterfall-chart-of-Cubs/m-p/309400#M10867</guid>
      <dc:creator>rogerjdeangelis</dc:creator>
      <dc:date>2016-11-04T20:05:05Z</dc:date>
    </item>
    <item>
      <title>Re: Fun With SAS ODS Graphics: Cubs logo &amp; waterfall chart of Cubs lead throughout World Series</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Fun-With-SAS-ODS-Graphics-Cubs-logo-amp-waterfall-chart-of-Cubs/m-p/309402#M10868</link>
      <description>&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;How to create the banner&lt;BR /&gt;&lt;BR /&gt;If you type xplo GoaCUBSaGO on any command line in the old&lt;BR /&gt;text editor, the text will be written to the paste buffer.&lt;BR /&gt;You can then paste it antwhere you want.&lt;BR /&gt;&lt;BR /&gt;%macro xplo ( AFSTR1 )/cmd ;

/*-----------------------------------------*\
|  xplo GO CUBS GO)                 |
|  lower case letters produce spaces        |
\*-----------------------------------------*/

note;notesubmit '%xploa';

%mend xplo;

%macro xploa
/  des = "Exploded Banner for Printouts";

options noovp;
title;
footnote;

%let uj=1;

%do %while(%scan(&amp;amp;afstr1.,&amp;amp;uj) ne );
   %let uj=%eval(&amp;amp;uj+1);
   %put uj= &amp;amp;uj;
%end;

data _null_;
   rc=filename('__xplo', "%sysfunc(pathname(work))/__xplo");
   if rc = 0 and fexist('__xplo') then rc=fdelete('__xplo');
   rc=filename('__xplo');

   rc=filename('__clp', "%sysfunc(pathname(work))/__clp");
   if rc = 0 and fexist('__clp') then rc=fdelete('__clp');
   rc=filename('__clp');
run;

filename ft15f001 "%sysfunc(pathname(work))/__xplo";

* format for proc explode;
data _null_;
file ft15f001;
   %do ui=1 %to %eval(&amp;amp;uj-1);
      put "D";
      put " %scan(&amp;amp;afstr1.,&amp;amp;ui)";
   %end;
run;

filename __clp "%sysfunc(pathname(work))/__clp";

proc printto print=__clp;
run;quit;

proc explode;
run;

filename ft15f001 clear;
run;quit;
proc printto;
run;quit;

filename __dm clipbrd ;

   data _null_;
     infile __clp;
     file __dm;
     input;
     putlog _infile_;
     put _infile_;
   run;

filename __dm clear;

%mend xploa;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Fri, 04 Nov 2016 20:09:21 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Fun-With-SAS-ODS-Graphics-Cubs-logo-amp-waterfall-chart-of-Cubs/m-p/309402#M10868</guid>
      <dc:creator>rogerjdeangelis</dc:creator>
      <dc:date>2016-11-04T20:09:21Z</dc:date>
    </item>
    <item>
      <title>Re: Fun With SAS ODS Graphics: Cubs logo &amp; waterfall chart of Cubs lead throughout World Series</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Fun-With-SAS-ODS-Graphics-Cubs-logo-amp-waterfall-chart-of-Cubs/m-p/309417#M10871</link>
      <description>&lt;P&gt;You can&amp;nbsp;use PROC EXPLODE without messing with macro. See the &lt;A href="http://support.sas.com/documentation/onlinedoc/base/91/explode.pdf" target="_self"&gt;SAS 9.1&amp;nbsp;documentation&lt;/A&gt;.&lt;/P&gt;
&lt;P&gt;An example is&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;ods listing;
filename ft15f001 temp;
proc explode;
 parmcards;
 GO CUBS GO
;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&lt;IMG src="https://communities.sas.com/t5/image/serverpage/image-id/5670i13DEABC673B0AD61/image-size/original?v=v2&amp;amp;px=-1" border="0" alt="Region Capture.png" title="Region Capture.png" /&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 04 Nov 2016 21:02:05 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Fun-With-SAS-ODS-Graphics-Cubs-logo-amp-waterfall-chart-of-Cubs/m-p/309417#M10871</guid>
      <dc:creator>Rick_SAS</dc:creator>
      <dc:date>2016-11-04T21:02:05Z</dc:date>
    </item>
    <item>
      <title>Re: Fun With SAS ODS Graphics: Cubs logo &amp; waterfall chart of Cubs lead throughout World Series</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Fun-With-SAS-ODS-Graphics-Cubs-logo-amp-waterfall-chart-of-Cubs/m-p/309822#M10883</link>
      <description>&lt;P&gt;Nice to still see a use for PROC EXPLODE now that lineflow is in the museum &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;&amp;nbsp;!&lt;/P&gt;</description>
      <pubDate>Mon, 07 Nov 2016 19:15:55 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Fun-With-SAS-ODS-Graphics-Cubs-logo-amp-waterfall-chart-of-Cubs/m-p/309822#M10883</guid>
      <dc:creator>SASKiwi</dc:creator>
      <dc:date>2016-11-07T19:15:55Z</dc:date>
    </item>
  </channel>
</rss>

