<?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 sgplot, vline, break on xaxis in Graphics Programming</title>
    <link>https://communities.sas.com/t5/Graphics-Programming/sgplot-vline-break-on-xaxis/m-p/588767#M18871</link>
    <description>&lt;P&gt;in the sample code, below, I can't figure out why the plotted lines aren't breaking at "Calc_4", which has a missing value?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;thanks for any suggestions,&lt;/P&gt;
&lt;P&gt;Dave&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;data test;&lt;BR /&gt;length Q $ 10;&lt;BR /&gt;input Q $ Q1 Grade Value;&lt;BR /&gt;datalines;&lt;BR /&gt;Calc_1 1 8 77&lt;BR /&gt;Calc_1 1 9 81&lt;BR /&gt;Calc_2 2 8 69&lt;BR /&gt;Calc_2 2 9 73&lt;BR /&gt;Calc_3 3 8 64&lt;BR /&gt;Calc_4 . . .&lt;BR /&gt;Non-Calc_1 1 8 83&lt;BR /&gt;Non-Calc_1 1 9 83&lt;BR /&gt;Non-Calc_2 2 8 84&lt;BR /&gt;Non-Calc_2 2 9 86&lt;BR /&gt;Non-Calc_3 3 8 83&lt;BR /&gt;Non-Calc_3 3 9 84&lt;BR /&gt;;&lt;BR /&gt;run;&lt;/P&gt;
&lt;P&gt;proc format;&lt;BR /&gt;value $qfmt&lt;BR /&gt;'Calc_4' =&amp;nbsp; '&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;' ; &lt;BR /&gt;run;&lt;BR /&gt;&lt;BR /&gt;proc sgplot data=test; format Q $qfmt.;&lt;BR /&gt;series x = Q y = value/group=grade BREAK ;&lt;BR /&gt;xaxis DISCRETEORDER=DATA ;&lt;BR /&gt;run;&lt;/P&gt;</description>
    <pubDate>Sat, 14 Sep 2019 21:22:37 GMT</pubDate>
    <dc:creator>Dave25</dc:creator>
    <dc:date>2019-09-14T21:22:37Z</dc:date>
    <item>
      <title>sgplot, vline, break on xaxis</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/sgplot-vline-break-on-xaxis/m-p/588767#M18871</link>
      <description>&lt;P&gt;in the sample code, below, I can't figure out why the plotted lines aren't breaking at "Calc_4", which has a missing value?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;thanks for any suggestions,&lt;/P&gt;
&lt;P&gt;Dave&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;data test;&lt;BR /&gt;length Q $ 10;&lt;BR /&gt;input Q $ Q1 Grade Value;&lt;BR /&gt;datalines;&lt;BR /&gt;Calc_1 1 8 77&lt;BR /&gt;Calc_1 1 9 81&lt;BR /&gt;Calc_2 2 8 69&lt;BR /&gt;Calc_2 2 9 73&lt;BR /&gt;Calc_3 3 8 64&lt;BR /&gt;Calc_4 . . .&lt;BR /&gt;Non-Calc_1 1 8 83&lt;BR /&gt;Non-Calc_1 1 9 83&lt;BR /&gt;Non-Calc_2 2 8 84&lt;BR /&gt;Non-Calc_2 2 9 86&lt;BR /&gt;Non-Calc_3 3 8 83&lt;BR /&gt;Non-Calc_3 3 9 84&lt;BR /&gt;;&lt;BR /&gt;run;&lt;/P&gt;
&lt;P&gt;proc format;&lt;BR /&gt;value $qfmt&lt;BR /&gt;'Calc_4' =&amp;nbsp; '&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;' ; &lt;BR /&gt;run;&lt;BR /&gt;&lt;BR /&gt;proc sgplot data=test; format Q $qfmt.;&lt;BR /&gt;series x = Q y = value/group=grade BREAK ;&lt;BR /&gt;xaxis DISCRETEORDER=DATA ;&lt;BR /&gt;run;&lt;/P&gt;</description>
      <pubDate>Sat, 14 Sep 2019 21:22:37 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/sgplot-vline-break-on-xaxis/m-p/588767#M18871</guid>
      <dc:creator>Dave25</dc:creator>
      <dc:date>2019-09-14T21:22:37Z</dc:date>
    </item>
    <item>
      <title>Re: sgplot, vline, break on xaxis</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/sgplot-vline-break-on-xaxis/m-p/588771#M18873</link>
      <description>&lt;P&gt;Maybe you need to add two records having missing values with Grade equal to 8 and 9? Like below:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data test;
length Q $ 10;
input Q $ Q1 Grade Value;
datalines;
Calc_1 1 8 77
Calc_1 1 9 81
Calc_2 2 8 69
Calc_2 2 9 73
Calc_3 3 8 64
Calc_4 . 8 .
Calc_4 . 9 .
Non-Calc_1 1 8 83
Non-Calc_1 1 9 83
Non-Calc_2 2 8 84
Non-Calc_2 2 9 86
Non-Calc_3 3 8 83
Non-Calc_3 3 9 84
;
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Sat, 14 Sep 2019 21:34:09 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/sgplot-vline-break-on-xaxis/m-p/588771#M18873</guid>
      <dc:creator>jjjch</dc:creator>
      <dc:date>2019-09-14T21:34:09Z</dc:date>
    </item>
    <item>
      <title>Re: sgplot, vline, break on xaxis</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/sgplot-vline-break-on-xaxis/m-p/588778#M18874</link>
      <description>eureka! that works - thanks</description>
      <pubDate>Sat, 14 Sep 2019 22:46:25 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/sgplot-vline-break-on-xaxis/m-p/588778#M18874</guid>
      <dc:creator>Dave25</dc:creator>
      <dc:date>2019-09-14T22:46:25Z</dc:date>
    </item>
    <item>
      <title>Re: sgplot, vline, break on xaxis</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/sgplot-vline-break-on-xaxis/m-p/588808#M18875</link>
      <description>&lt;P&gt;Hello &lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/43753"&gt;@Dave25&lt;/a&gt;,&lt;BR /&gt;&lt;BR /&gt;Glad to see that &lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/110541"&gt;@jjjch&lt;/a&gt;'s solution worked for you. Then it would help later readers if you marked that helpful reply as the accepted solution, not your own "thank you" post. Could you please change that? It's very easy: see instructions here (if needed):&amp;nbsp;&lt;A href="https://communities.sas.com/t5/SAS-Programming/how-to-find-the-difference-between-two-hex-data/m-p/552509#M153587" target="_blank" rel="noopener"&gt;https://communities.sas.com/t5/SAS-Programming/how-to-find-the-difference-between-two-hex-data/m-p/552509#M153587&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Sun, 15 Sep 2019 08:09:11 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/sgplot-vline-break-on-xaxis/m-p/588808#M18875</guid>
      <dc:creator>FreelanceReinh</dc:creator>
      <dc:date>2019-09-15T08:09:11Z</dc:date>
    </item>
  </channel>
</rss>

