<?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 Fun With SAS ODS Graphics: Don't Miss the Gorilla in the Data! in Graphics Programming</title>
    <link>https://communities.sas.com/t5/Graphics-Programming/Fun-With-SAS-ODS-Graphics-Don-t-Miss-the-Gorilla-in-the-Data/m-p/697286#M20714</link>
    <description>&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Don't Miss the Gorilla in the Data!" style="width: 640px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/51476iBF710534911ED407/image-size/large?v=v2&amp;amp;px=999" role="button" title="Gorilla.png" alt="Don't Miss the Gorilla in the Data!" /&gt;&lt;span class="lia-inline-image-caption" onclick="event.preventDefault();"&gt;Don't Miss the Gorilla in the Data!&lt;/span&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Had to do a quick scatter plot of the data given to students to analyze from Itai Yanai and Martin Lercher's &lt;A href="https://genomebiology.biomedcentral.com/articles/10.1186/s13059-020-02133-w" target="_self"&gt;A Hypothesis is a Liability&lt;/A&gt;, which is currently &lt;A href="https://twitter.com/tomstafford/status/1324284555965157377" target="_self"&gt;getting lots of Twitter love&lt;/A&gt;.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;*==&amp;gt; Fun w/SAS ODS Graphics: Don't Miss the Gorilla in the Data!
     Reference: A Hypothesis is a Liability, by Itai Yanai &amp;amp; Martin Lercher 
     https://genomebiology.biomedcentral.com/articles/10.1186/s13059-020-02133-w 
     Dropbox data files courtesy of the researchers;

filename w url 'https://www.dropbox.com/s/685pkte3n3879mn/data9b_w.txt/?dl=1'; * Women's data;
proc import datafile=w dbms=dlm out=w replace; delimiter='09'x;

filename m url 'https://www.dropbox.com/s/r3wyn2ex20glsoa/data9b_m.txt/?dl=1'; * Men's data;
proc import datafile=m dbms=dlm out=m replace; delimiter='09'x;

proc sql;                             * Merge data together, assign category;                                 
create table StepsBMI as 
select 'WOMEN' as Category, w.* from w union all select 'MEN', m.* from m;

proc sgplot aspect=1 noborder nowall; * Quick scatter plot to see what we've got!; 
styleattrs datacontrastcolors=(blue red);
scatter x=steps y=bmi / group=category markerattrs=(symbol=circlefilled size=5pt);  
keylegend / location=inside position=topright down=2 noborder title="";
xaxis display=(noline noticks) grid gridattrs=(thickness=1pt color=darkgrey) valuesformat=comma9.; 
yaxis display=(noline noticks) grid gridattrs=(thickness=1pt color=darkgrey);
label bmi="BODY MASS INDEX" steps="STEPS";&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Sat, 07 Nov 2020 04:53:37 GMT</pubDate>
    <dc:creator>tc</dc:creator>
    <dc:date>2020-11-07T04:53:37Z</dc:date>
    <item>
      <title>Fun With SAS ODS Graphics: Don't Miss the Gorilla in the Data!</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Fun-With-SAS-ODS-Graphics-Don-t-Miss-the-Gorilla-in-the-Data/m-p/697286#M20714</link>
      <description>&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Don't Miss the Gorilla in the Data!" style="width: 640px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/51476iBF710534911ED407/image-size/large?v=v2&amp;amp;px=999" role="button" title="Gorilla.png" alt="Don't Miss the Gorilla in the Data!" /&gt;&lt;span class="lia-inline-image-caption" onclick="event.preventDefault();"&gt;Don't Miss the Gorilla in the Data!&lt;/span&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Had to do a quick scatter plot of the data given to students to analyze from Itai Yanai and Martin Lercher's &lt;A href="https://genomebiology.biomedcentral.com/articles/10.1186/s13059-020-02133-w" target="_self"&gt;A Hypothesis is a Liability&lt;/A&gt;, which is currently &lt;A href="https://twitter.com/tomstafford/status/1324284555965157377" target="_self"&gt;getting lots of Twitter love&lt;/A&gt;.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;*==&amp;gt; Fun w/SAS ODS Graphics: Don't Miss the Gorilla in the Data!
     Reference: A Hypothesis is a Liability, by Itai Yanai &amp;amp; Martin Lercher 
     https://genomebiology.biomedcentral.com/articles/10.1186/s13059-020-02133-w 
     Dropbox data files courtesy of the researchers;

filename w url 'https://www.dropbox.com/s/685pkte3n3879mn/data9b_w.txt/?dl=1'; * Women's data;
proc import datafile=w dbms=dlm out=w replace; delimiter='09'x;

filename m url 'https://www.dropbox.com/s/r3wyn2ex20glsoa/data9b_m.txt/?dl=1'; * Men's data;
proc import datafile=m dbms=dlm out=m replace; delimiter='09'x;

proc sql;                             * Merge data together, assign category;                                 
create table StepsBMI as 
select 'WOMEN' as Category, w.* from w union all select 'MEN', m.* from m;

proc sgplot aspect=1 noborder nowall; * Quick scatter plot to see what we've got!; 
styleattrs datacontrastcolors=(blue red);
scatter x=steps y=bmi / group=category markerattrs=(symbol=circlefilled size=5pt);  
keylegend / location=inside position=topright down=2 noborder title="";
xaxis display=(noline noticks) grid gridattrs=(thickness=1pt color=darkgrey) valuesformat=comma9.; 
yaxis display=(noline noticks) grid gridattrs=(thickness=1pt color=darkgrey);
label bmi="BODY MASS INDEX" steps="STEPS";&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 07 Nov 2020 04:53:37 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Fun-With-SAS-ODS-Graphics-Don-t-Miss-the-Gorilla-in-the-Data/m-p/697286#M20714</guid>
      <dc:creator>tc</dc:creator>
      <dc:date>2020-11-07T04:53:37Z</dc:date>
    </item>
  </channel>
</rss>

