<?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 w/ODS Graphics: Dot Plot of Avg Speed of Men's Track &amp;amp; Field Event Winners in Graphics Programming</title>
    <link>https://communities.sas.com/t5/Graphics-Programming/Fun-w-ODS-Graphics-Dot-Plot-of-Avg-Speed-of-Men-s-Track-amp/m-p/293183#M10330</link>
    <description>&lt;P&gt;Nice plot.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Interesting that the 4x100 is faster average speed than the 100m, but the 4x400 is a little slower than the 400.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;At first I was confused that the average speed of 4x100 could be so much faster than the Usain Bolt's average speed in the 100m.&amp;nbsp; But I suppose perhaps it is because in the 4x100, three of the four runners get a "running start" instead of starting from the blocks.&lt;/P&gt;</description>
    <pubDate>Mon, 22 Aug 2016 16:09:01 GMT</pubDate>
    <dc:creator>Quentin</dc:creator>
    <dc:date>2016-08-22T16:09:01Z</dc:date>
    <item>
      <title>Fun w/ODS Graphics: Dot Plot of Avg Speed of Men's Track &amp; Field Event Winners</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Fun-w-ODS-Graphics-Dot-Plot-of-Avg-Speed-of-Men-s-Track-amp/m-p/293013#M10327</link>
      <description>&lt;P&gt;&lt;IMG src="https://communities.sas.com/t5/image/serverpage/image-id/4664iD23DA04BB287C481/image-size/original?v=v2&amp;amp;px=-1" border="0" alt="FastFasterFastest.png" title="FastFasterFastest.png" /&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Just about time for the closing ceremony, so time for&amp;nbsp;one last chart - a simple dot plot that tries to capture the effect of distance/hurdles on the average speed of the winners of the Men's Track &amp;amp; Field event finals. Was kind of surprised to see how fast those distance walkers go!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;* Fun w/ODS Graphics: Dot Plot of Men's Track &amp;amp; Field event winners' avg speeds;

data results;
infile cards dlm="," firstobs=2 truncover dsd;
input DISTANCE EVENT : $30. WINNER : $30. COUNTRY : $30. TIME time12.;
MPH=DISTANCE/TIME/1000*60*60*0.621371; * Convert to miles-per-hour for us metric-challenged;
* Source: https://en.wikipedia.org/wiki/Athletics_at_the_2016_Summer_Olympics;
cards;
DISTANCE,EVENT,WINNER,COUNTRY,TIME
100, 100m,Usain Bolt,&amp;nbsp;Jamaica,0:00:09.81
200, 200m,Usain Bolt,&amp;nbsp;Jamaica,0:00:19.78
400, 400m,Wayde van Niekerk,&amp;nbsp;South Africa,0:00:43.03
800, 800m,David Rudisha,&amp;nbsp;Kenya,0:01:42.15
1500, 1500m,Matthew Centrowitz Jr.,&amp;nbsp;United States,0:03:50.00
5000, 5000m,Mo Farah,&amp;nbsp;Great Britain,0:13:03.30
10000, 10000m,Mo Farah,&amp;nbsp;Great Britain,0:27:05.17
110, 110m hurdles,Omar McLeod,&amp;nbsp;Jamaica,0:00:13.05
400, 400m hurdles,Kerron Clement,&amp;nbsp;United States,0:00:47.73
3000, 3000m steeplechase,Conseslus Kipruto,&amp;nbsp;Kenya,0:08:03.28
400, 4×100m relay,&amp;nbsp;Jamaica,,0:00:37.27
1600, 4×400m relay,&amp;nbsp;United States,,0:02:57.30
42195, Marathon,Eliud Kipchoge,Kenya,2:08:44.00
20000, 20km walk,Wang Zhen,&amp;nbsp;China,1:19:14.00
50000, 50km walk,Matej Tóth,&amp;nbsp;Slovakia,3:40:58.00
;
ods listing image_dpi=300 gpath='/folders/myfolders';
ods graphics on / reset antialias width=7in height=5in imagename="FastFasterFastest";
proc sgplot data=results;
title "Who's the Fastest of Them All? Winners of Men's Track &amp;amp; Field Event Finals";
dot event / response=MPH categoryorder=respdesc;
yaxis display=(nolabel) valueattrs=(size=7pt);
xaxis label="Average Speed(Mph)" grid labelattrs=(size=7pt)  valueattrs=(size=7pt);
yaxistable mph / title="Mph" position=right nolabel titleattrs=(size=7pt);
yaxistable distance / title="Meters" position=right nolabel titleattrs=(size=7pt);
yaxistable winner / title="Winner" position=right nolabel titleattrs=(size=7pt);
yaxistable country / title="Country" position=right nolabel titleattrs=(size=7pt);
yaxistable time / title="Time" position=right nolabel titleattrs=(size=7pt);
format mph 5.2 time tod11.2 distance comma7.;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 22 Aug 2016 01:55:40 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Fun-w-ODS-Graphics-Dot-Plot-of-Avg-Speed-of-Men-s-Track-amp/m-p/293013#M10327</guid>
      <dc:creator>tc</dc:creator>
      <dc:date>2016-08-22T01:55:40Z</dc:date>
    </item>
    <item>
      <title>Re: Fun w/ODS Graphics: Dot Plot of Avg Speed of Men's Track &amp; Field Event Winners</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Fun-w-ODS-Graphics-Dot-Plot-of-Avg-Speed-of-Men-s-Track-amp/m-p/293183#M10330</link>
      <description>&lt;P&gt;Nice plot.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Interesting that the 4x100 is faster average speed than the 100m, but the 4x400 is a little slower than the 400.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;At first I was confused that the average speed of 4x100 could be so much faster than the Usain Bolt's average speed in the 100m.&amp;nbsp; But I suppose perhaps it is because in the 4x100, three of the four runners get a "running start" instead of starting from the blocks.&lt;/P&gt;</description>
      <pubDate>Mon, 22 Aug 2016 16:09:01 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Fun-w-ODS-Graphics-Dot-Plot-of-Avg-Speed-of-Men-s-Track-amp/m-p/293183#M10330</guid>
      <dc:creator>Quentin</dc:creator>
      <dc:date>2016-08-22T16:09:01Z</dc:date>
    </item>
    <item>
      <title>Re: Fun w/ODS Graphics: Dot Plot of Avg Speed of Men's Track &amp; Field Event Winners</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Fun-w-ODS-Graphics-Dot-Plot-of-Avg-Speed-of-Men-s-Track-amp/m-p/293235#M10332</link>
      <description>&lt;P&gt;And, to add to &lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/19879"&gt;@Quentin﻿&lt;/a&gt;, there is only reaction time included once at the start. The 3 subsequent runners get to see the oncoming team member and start moving as desired. Cutting out 3 reactions to start could well be nearly .6 seconds overall.&lt;/P&gt;</description>
      <pubDate>Mon, 22 Aug 2016 19:30:58 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Fun-w-ODS-Graphics-Dot-Plot-of-Avg-Speed-of-Men-s-Track-amp/m-p/293235#M10332</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2016-08-22T19:30:58Z</dc:date>
    </item>
  </channel>
</rss>

