<?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: sprdplot macro in Statistical Procedures</title>
    <link>https://communities.sas.com/t5/Statistical-Procedures/sprdplot-macro/m-p/275893#M14552</link>
    <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/16719"&gt;@Miracle﻿&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I'm not sure why in your code macro LABEL&lt;EM&gt;S&lt;/EM&gt; is called, whereas in the code of SPRDPLOT I only find a call of macro LABEL. Anyhow, both LABEL and LABELS are available under&amp;nbsp;Utility macros --&amp;gt; Graphics utility on the web page you linked to. So, simply download the macros you need and compile them (i.e. simply submit the macro code) or put them into an autocall library before you call SPRDPLOT.&lt;/P&gt;</description>
    <pubDate>Wed, 08 Jun 2016 07:57:40 GMT</pubDate>
    <dc:creator>FreelanceReinh</dc:creator>
    <dc:date>2016-06-08T07:57:40Z</dc:date>
    <item>
      <title>sprdplot macro</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/sprdplot-macro/m-p/275866#M14547</link>
      <description>&lt;P&gt;&lt;FONT face="times new roman,times" size="3"&gt;Dear SAS forumers,&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT face="times new roman,times" size="3"&gt;Can I please ask if anyone has tried this spread-level plot macro &lt;A href="http://www.datavis.ca/sasmac/sprdplot.html" target="_self"&gt;http://www.datavis.ca/sasmac/sprdplot.html&lt;/A&gt;?&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="times new roman,times" size="3"&gt;If so, did you manage to run it without problems?&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="times new roman,times" size="3"&gt;When I tried to run it with my data, the error started at line211: %labels(data=_sumry_, x=logm, y=logs, text=left(%scan(&amp;amp;class,1)),&amp;nbsp;size=&amp;amp;htext, pos=2, out=_label_); Here I have enclosed partial log window output if you could explain how it can be resolved please?&lt;BR /&gt;&lt;/FONT&gt;&lt;FONT face="times new roman,times" size="3"&gt;&amp;nbsp;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="times new roman,times" size="3"&gt;Thank you much.&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="times new roman,times" size="3"&gt;&amp;nbsp;&lt;/FONT&gt;&lt;/P&gt;&lt;PRE&gt;17     %labels(data=_sumry_, x=logm, y=logs, text=left(%scan(&amp;amp;class,1)),        size=&amp;amp;htext,
       -
       180
17  ! pos=2, out=_label_);  data _slope_;    set _parms_(keep=logm);     drop logm power;
17  ! xsys='1'; ysys='1';    length text $16 function $8;    x = %scan(&amp;amp;sploc,1);    y
WARNING: Apparent invocation of macro LABELS not resolved.
SYMBOLGEN:  Macro variable CLASS resolves to raps drinkinghelp2
SYMBOLGEN:  Macro variable HTEXT resolves to 1.7
MPRINT(SPRDPLOT):   %labels(data=_sumry_, x=logm, y=logs, text=left(raps), size=1.7, pos=2,
out=_label_);
NOTE: The previous statement has been deleted.
WARNING: The data set WORK._PARMS_ may be incomplete.  When this step was stopped there were 0
         observations and 0 variables.
MPRINT(SPRDPLOT):   data _slope_;
MPRINT(SPRDPLOT):   set _parms_(keep=logm);
ERROR: The variable LOGM in the DROP, KEEP, or RENAME list has never been referenced.&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 08 Jun 2016 05:31:12 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/sprdplot-macro/m-p/275866#M14547</guid>
      <dc:creator>Miracle</dc:creator>
      <dc:date>2016-06-08T05:31:12Z</dc:date>
    </item>
    <item>
      <title>Re: sprdplot macro</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/sprdplot-macro/m-p/275890#M14551</link>
      <description>&lt;P&gt;It looks like it's dependent on another macro - labels. Did you download that macro and define it?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;It looks to be here:&lt;/P&gt;
&lt;P&gt;&lt;A href="http://datavis.ca/sasmac/labels.html" target="_blank"&gt;http://datavis.ca/sasmac/labels.html&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 08 Jun 2016 07:45:18 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/sprdplot-macro/m-p/275890#M14551</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2016-06-08T07:45:18Z</dc:date>
    </item>
    <item>
      <title>Re: sprdplot macro</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/sprdplot-macro/m-p/275893#M14552</link>
      <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/16719"&gt;@Miracle﻿&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I'm not sure why in your code macro LABEL&lt;EM&gt;S&lt;/EM&gt; is called, whereas in the code of SPRDPLOT I only find a call of macro LABEL. Anyhow, both LABEL and LABELS are available under&amp;nbsp;Utility macros --&amp;gt; Graphics utility on the web page you linked to. So, simply download the macros you need and compile them (i.e. simply submit the macro code) or put them into an autocall library before you call SPRDPLOT.&lt;/P&gt;</description>
      <pubDate>Wed, 08 Jun 2016 07:57:40 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/sprdplot-macro/m-p/275893#M14552</guid>
      <dc:creator>FreelanceReinh</dc:creator>
      <dc:date>2016-06-08T07:57:40Z</dc:date>
    </item>
    <item>
      <title>Re: sprdplot macro</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/sprdplot-macro/m-p/275895#M14553</link>
      <description>&lt;P&gt;Hmm...interesting. The macro for download is also called %labels, not %label.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Michael also stores his macros on GitHub and %label and %labels macro are both available here. It does look like it was updated to %labels about 4 years, in the last change note.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://github.com/friendly/SAS-macros" target="_blank"&gt;https://github.com/friendly/SAS-macros&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 08 Jun 2016 08:02:15 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/sprdplot-macro/m-p/275895#M14553</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2016-06-08T08:02:15Z</dc:date>
    </item>
    <item>
      <title>Re: sprdplot macro</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/sprdplot-macro/m-p/275896#M14554</link>
      <description>&lt;P&gt;Yes, in &lt;A href="http://www.datavis.ca/sasmac/labels.html" target="_blank"&gt;http://www.datavis.ca/sasmac/labels.html&lt;/A&gt;&amp;nbsp;it says: "This is an updated version of the LABEL macro ..., renamed to 'LABELS' to avoid a conflict with the LABEL macro in ANNOMAC.SAS." So, LABELS might be the right one to use.&lt;/P&gt;</description>
      <pubDate>Wed, 08 Jun 2016 08:06:55 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/sprdplot-macro/m-p/275896#M14554</guid>
      <dc:creator>FreelanceReinh</dc:creator>
      <dc:date>2016-06-08T08:06:55Z</dc:date>
    </item>
    <item>
      <title>Re: sprdplot macro</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/sprdplot-macro/m-p/275900#M14555</link>
      <description>&lt;P&gt;&lt;FONT face="times new roman,times" size="4"&gt;Dear&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/32733"&gt;@FreelanceReinh﻿&lt;/a&gt;&amp;nbsp;and&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13879"&gt;@Reeza﻿&lt;/a&gt;.&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="times new roman,times" size="4"&gt;The sprdplot macro now runs without problem.&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="times new roman,times" size="4"&gt;Thank you very much&amp;nbsp;&lt;img id="smileyhappy" class="emoticon emoticon-smileyhappy" src="https://communities.sas.com/i/smilies/16x16_smiley-happy.png" alt="Smiley Happy" title="Smiley Happy" /&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 08 Jun 2016 08:36:51 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/sprdplot-macro/m-p/275900#M14555</guid>
      <dc:creator>Miracle</dc:creator>
      <dc:date>2016-06-08T08:36:51Z</dc:date>
    </item>
  </channel>
</rss>

