<?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: Basic question, plot and symbols in SAS Procedures</title>
    <link>https://communities.sas.com/t5/SAS-Procedures/Basic-question-plot-and-symbols/m-p/48332#M13060</link>
    <description>Thanks for your kind help!&lt;BR /&gt;
&lt;BR /&gt;
I am trying to use Proc plot.&lt;BR /&gt;
&lt;BR /&gt;
At the moment I just written&lt;BR /&gt;
&lt;BR /&gt;
plot x*y=varname;&lt;BR /&gt;
&lt;BR /&gt;
but would like to get the whole varname or at least 4 letters as symbol instead of just the first one.&lt;BR /&gt;
&lt;BR /&gt;
Thanks for the code given! I am a little unsure as to how to use it, though. *sigh* I haven't tried to use plot before.</description>
    <pubDate>Wed, 14 Jul 2010 14:03:04 GMT</pubDate>
    <dc:creator>deleted_user</dc:creator>
    <dc:date>2010-07-14T14:03:04Z</dc:date>
    <item>
      <title>Basic question, plot and symbols</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Basic-question-plot-and-symbols/m-p/48327#M13055</link>
      <description>Hi!&lt;BR /&gt;
&lt;BR /&gt;
I have a basic question I hope someone can help me with. I want to create a plot where symbols equal another variable (an ID variable). Thanks on beforehand! &lt;BR /&gt;
&lt;BR /&gt;
(I've tried to search the forum for an answer, but I couldn't find one. I hope I didn't miss any thread.)&lt;BR /&gt;
&lt;BR /&gt;
Best regards,&lt;BR /&gt;
Helen</description>
      <pubDate>Tue, 13 Jul 2010 11:10:00 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Basic-question-plot-and-symbols/m-p/48327#M13055</guid>
      <dc:creator>deleted_user</dc:creator>
      <dc:date>2010-07-13T11:10:00Z</dc:date>
    </item>
    <item>
      <title>Re: Basic question, plot and symbols</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Basic-question-plot-and-symbols/m-p/48328#M13056</link>
      <description>plot y*x=symbolvar;</description>
      <pubDate>Tue, 13 Jul 2010 17:58:17 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Basic-question-plot-and-symbols/m-p/48328#M13056</guid>
      <dc:creator>Paige</dc:creator>
      <dc:date>2010-07-13T17:58:17Z</dc:date>
    </item>
    <item>
      <title>Re: Basic question, plot and symbols</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Basic-question-plot-and-symbols/m-p/48329#M13057</link>
      <description>Thanks - I would like to have the first four letters as symbol and only manages to get the first one.</description>
      <pubDate>Tue, 13 Jul 2010 19:15:46 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Basic-question-plot-and-symbols/m-p/48329#M13057</guid>
      <dc:creator>deleted_user</dc:creator>
      <dc:date>2010-07-13T19:15:46Z</dc:date>
    </item>
    <item>
      <title>Re: Basic question, plot and symbols</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Basic-question-plot-and-symbols/m-p/48330#M13058</link>
      <description>Here is a simplistic solution using ANNOTATE.  There are a number of possible refinements depending on your needs.&lt;BR /&gt;
&lt;BR /&gt;
[pre]&lt;BR /&gt;
data anndat(keep=xsys ysys x y function text position);&lt;BR /&gt;
set sashelp.class(rename=(name=text));&lt;BR /&gt;
retain xsys ysys '2' function 'label' position '2';&lt;BR /&gt;
&lt;BR /&gt;
x=weight; y=height; output anndat;&lt;BR /&gt;
run;&lt;BR /&gt;
&lt;BR /&gt;
symbol1 v=dot color=blue;&lt;BR /&gt;
proc gplot data=sashelp.class anno=anndat;&lt;BR /&gt;
   plot height * Weight;&lt;BR /&gt;
   run;&lt;BR /&gt;
   quit;&lt;BR /&gt;
[/pre]</description>
      <pubDate>Wed, 14 Jul 2010 00:40:01 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Basic-question-plot-and-symbols/m-p/48330#M13058</guid>
      <dc:creator>ArtC</dc:creator>
      <dc:date>2010-07-14T00:40:01Z</dc:date>
    </item>
    <item>
      <title>Re: Basic question, plot and symbols</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Basic-question-plot-and-symbols/m-p/48331#M13059</link>
      <description>HelenSAS: are you talking about PROC GPLOT or PROC PLOT?</description>
      <pubDate>Wed, 14 Jul 2010 13:37:31 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Basic-question-plot-and-symbols/m-p/48331#M13059</guid>
      <dc:creator>Paige</dc:creator>
      <dc:date>2010-07-14T13:37:31Z</dc:date>
    </item>
    <item>
      <title>Re: Basic question, plot and symbols</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Basic-question-plot-and-symbols/m-p/48332#M13060</link>
      <description>Thanks for your kind help!&lt;BR /&gt;
&lt;BR /&gt;
I am trying to use Proc plot.&lt;BR /&gt;
&lt;BR /&gt;
At the moment I just written&lt;BR /&gt;
&lt;BR /&gt;
plot x*y=varname;&lt;BR /&gt;
&lt;BR /&gt;
but would like to get the whole varname or at least 4 letters as symbol instead of just the first one.&lt;BR /&gt;
&lt;BR /&gt;
Thanks for the code given! I am a little unsure as to how to use it, though. *sigh* I haven't tried to use plot before.</description>
      <pubDate>Wed, 14 Jul 2010 14:03:04 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Basic-question-plot-and-symbols/m-p/48332#M13060</guid>
      <dc:creator>deleted_user</dc:creator>
      <dc:date>2010-07-14T14:03:04Z</dc:date>
    </item>
    <item>
      <title>Re: Basic question, plot and symbols</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Basic-question-plot-and-symbols/m-p/48333#M13061</link>
      <description>There are plenty of examples as support.sas.com.&lt;BR /&gt;
&lt;BR /&gt;
&lt;A href="http://support.sas.com/documentation/cdl/en/proc/61895/HTML/default/viewer.htm#/documentation/cdl/en/proc/61895/HTML/default/a000146767.htm" target="_blank"&gt;http://support.sas.com/documentation/cdl/en/proc/61895/HTML/default/viewer.htm#/documentation/cdl/en/proc/61895/HTML/default/a000146767.htm&lt;/A&gt;</description>
      <pubDate>Wed, 14 Jul 2010 15:17:34 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Basic-question-plot-and-symbols/m-p/48333#M13061</guid>
      <dc:creator>Paige</dc:creator>
      <dc:date>2010-07-14T15:17:34Z</dc:date>
    </item>
    <item>
      <title>Re: Basic question, plot and symbols</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Basic-question-plot-and-symbols/m-p/48334#M13062</link>
      <description>Thanks! Found it: plot x*y $ labelvar;&lt;BR /&gt;
&lt;BR /&gt;
Can't get only 4 letters but at the moment I'm happy as it is.</description>
      <pubDate>Thu, 15 Jul 2010 08:47:38 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Basic-question-plot-and-symbols/m-p/48334#M13062</guid>
      <dc:creator>deleted_user</dc:creator>
      <dc:date>2010-07-15T08:47:38Z</dc:date>
    </item>
  </channel>
</rss>

