<?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: No break in sgpanel series plot in New SAS User</title>
    <link>https://communities.sas.com/t5/New-SAS-User/No-break-in-sgpanel-series-plot/m-p/541219#M7329</link>
    <description>&lt;P&gt;Yes, that is what happened. The orginal data does not include rows for the missing data. When I added these back (i.e., now there is an x-value that has a '.' for y), then the breaks show up in the graph. That didn't dawn on me. Thank you so much. Here is the result:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="SGPanel2.png" style="width: 600px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/27752i7FF4EF697215DAD2/image-size/large?v=v2&amp;amp;px=999" role="button" title="SGPanel2.png" alt="SGPanel2.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
    <pubDate>Thu, 07 Mar 2019 20:52:35 GMT</pubDate>
    <dc:creator>das</dc:creator>
    <dc:date>2019-03-07T20:52:35Z</dc:date>
    <item>
      <title>No break in sgpanel series plot</title>
      <link>https://communities.sas.com/t5/New-SAS-User/No-break-in-sgpanel-series-plot/m-p/541204#M7324</link>
      <description>&lt;P&gt;Can someone help me understand why I am not getting a break in my data where there is missing data? The upper left panel should have 5 missing values (i.e., 5 broken lines) at 2nd x-axis tick (which happens to be presently labeled '2').&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;DIV class="branch"&gt;
&lt;DIV&gt;
&lt;DIV class="c"&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="SGPanel.png" style="width: 600px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/27751iA07143DD3B39315B/image-size/large?v=v2&amp;amp;px=999" role="button" title="SGPanel.png" alt="SGPanel.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Here is the log.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;NOTE: Copyright (c) 2016 by SAS Institute Inc., Cary, NC, USA.
NOTE: SAS (r) Proprietary Software 9.4 (TS1M5)
      Licensed to WASHINGTON STATE UNIVERSITY - SFA - T&amp;amp;R, Site 70084219.
NOTE: This session is executing on the X64_7PRO  platform.



NOTE: Updated analytical products:

      SAS/STAT 14.3
      SAS/ETS 14.3
      SAS/OR 14.3
      SAS/IML 14.3
      SAS/QC 14.3

NOTE: Additional host information:

 X64_7PRO WIN 6.1.7601 Service Pack 1 Workstation

NOTE: SAS initialization used:
      real time           1.23 seconds
      cpu time            0.45 seconds

1    proc sgpanel data=sasuser.logpr noautolegend ;
2        title'Log of chromogen area by immuno-marker';
3        panelby movip species / layout=lattice onepanel rowheaderpos=left ;
4        series  x=order y=logpr /
5                group=subject
6                markers
7                markerattrs=(symbol=circle)
8                break
9                lineattrs=(pattern=1)
10               ;
11       colaxis type=discrete
12               discreteorder=data
13               valuesdisplay=("CD3" "CD20" "CD79a" "CD163" "Iba1" "IL-17")
14               valuesrotate=diagonal2
15               label="marker"
16               ;
17       rowaxis grid ;
18   run;

NOTE: Writing HTML Body file: sashtml.htm
NOTE: PROCEDURE SGPANEL used (Total process time):
      real time           2.76 seconds
      cpu time            0.29 seconds

NOTE: There were 181 observations read from the data set SASUSER.LOGPR.

19   title;title2;

&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 07 Mar 2019 20:02:28 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/No-break-in-sgpanel-series-plot/m-p/541204#M7324</guid>
      <dc:creator>das</dc:creator>
      <dc:date>2019-03-07T20:02:28Z</dc:date>
    </item>
    <item>
      <title>Re: No break in sgpanel series plot</title>
      <link>https://communities.sas.com/t5/New-SAS-User/No-break-in-sgpanel-series-plot/m-p/541213#M7325</link>
      <description>&lt;P&gt;Where you expect a break do you have an X value and a missing Y variable value? If the X value is not there then you do not have a qualified break in the values.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;data example;
   do x=1 to 10;
      y= rand('uniform');
      if x ne 3 then y2= rand('normal');
      else y2=.;
      output;
   end;
run;


proc sgplot data=example;
   /* no missing y for the x*/
   series x=x y=y / break;
   /* missing y2 for the x=3*/
   series x=x y=y2 /break;
run;&lt;/PRE&gt;</description>
      <pubDate>Thu, 07 Mar 2019 20:41:29 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/No-break-in-sgpanel-series-plot/m-p/541213#M7325</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2019-03-07T20:41:29Z</dc:date>
    </item>
    <item>
      <title>Re: No break in sgpanel series plot</title>
      <link>https://communities.sas.com/t5/New-SAS-User/No-break-in-sgpanel-series-plot/m-p/541219#M7329</link>
      <description>&lt;P&gt;Yes, that is what happened. The orginal data does not include rows for the missing data. When I added these back (i.e., now there is an x-value that has a '.' for y), then the breaks show up in the graph. That didn't dawn on me. Thank you so much. Here is the result:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="SGPanel2.png" style="width: 600px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/27752i7FF4EF697215DAD2/image-size/large?v=v2&amp;amp;px=999" role="button" title="SGPanel2.png" alt="SGPanel2.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 07 Mar 2019 20:52:35 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/No-break-in-sgpanel-series-plot/m-p/541219#M7329</guid>
      <dc:creator>das</dc:creator>
      <dc:date>2019-03-07T20:52:35Z</dc:date>
    </item>
  </channel>
</rss>

