<?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 Can someone identify this type of plot? in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Can-someone-identify-this-type-of-plot/m-p/835874#M330487</link>
    <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I need to plot this comparison graph between 2 variables (see screenshot).&amp;nbsp; Can someone identify the type of plot and a general procedure for this (looks like it's a comparison between 2 variables for 2 studies)?&amp;nbsp; Thank you.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="HitmonTran_0-1664465252678.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/75710i87FBB6238CBE9478/image-size/medium?v=v2&amp;amp;px=400" role="button" title="HitmonTran_0-1664465252678.png" alt="HitmonTran_0-1664465252678.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Thu, 29 Sep 2022 15:28:42 GMT</pubDate>
    <dc:creator>HitmonTran</dc:creator>
    <dc:date>2022-09-29T15:28:42Z</dc:date>
    <item>
      <title>Can someone identify this type of plot?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Can-someone-identify-this-type-of-plot/m-p/835874#M330487</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I need to plot this comparison graph between 2 variables (see screenshot).&amp;nbsp; Can someone identify the type of plot and a general procedure for this (looks like it's a comparison between 2 variables for 2 studies)?&amp;nbsp; Thank you.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="HitmonTran_0-1664465252678.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/75710i87FBB6238CBE9478/image-size/medium?v=v2&amp;amp;px=400" role="button" title="HitmonTran_0-1664465252678.png" alt="HitmonTran_0-1664465252678.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 29 Sep 2022 15:28:42 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Can-someone-identify-this-type-of-plot/m-p/835874#M330487</guid>
      <dc:creator>HitmonTran</dc:creator>
      <dc:date>2022-09-29T15:28:42Z</dc:date>
    </item>
    <item>
      <title>Re: Can someone identify this type of plot?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Can-someone-identify-this-type-of-plot/m-p/835880#M330490</link>
      <description>&lt;P&gt;The basic underlying plot appears to be a Scatter plot. Just has multiple Y axis values for the same X axis value.&lt;/P&gt;
&lt;P&gt;The grouping of Study1 and Study2 looks like this might be best from SGPANEL with a Panelby variable holding the values in the Study position, and a Scatter with the X variable the "Cue"/"Non-Cue" value and Y variable with the numeric.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;A basic example of something similar. Addition options available to control some spacing, grid lines and such.&lt;/P&gt;
&lt;PRE&gt;proc format;
value agegroup
11-13='13 or younger'
14-16='14 and older'
;

proc sgpanel data=sashelp.class;
   panelby sex / ;
   scatter x=age y=height;
   format age agegroup.;
   colaxis type=discrete discreteorder=formatted
   ;
  
run;&lt;/PRE&gt;</description>
      <pubDate>Thu, 29 Sep 2022 16:02:11 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Can-someone-identify-this-type-of-plot/m-p/835880#M330490</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2022-09-29T16:02:11Z</dc:date>
    </item>
  </channel>
</rss>

