<?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: PROC GPLOT is not found in New SAS User</title>
    <link>https://communities.sas.com/t5/New-SAS-User/PROC-GPLOT-is-not-found/m-p/623374#M19923</link>
    <description>&lt;P&gt;Thanks Jagadishktatam. I want to have scatter plot instead of line, Do you have any solution?&lt;/P&gt;</description>
    <pubDate>Sun, 09 Feb 2020 05:24:21 GMT</pubDate>
    <dc:creator>kngu022</dc:creator>
    <dc:date>2020-02-09T05:24:21Z</dc:date>
    <item>
      <title>PROC GPLOT is not found</title>
      <link>https://communities.sas.com/t5/New-SAS-User/PROC-GPLOT-is-not-found/m-p/623365#M19921</link>
      <description>&lt;P&gt;Hi I am trying to plot the data but the error gives me like below. Can someone please show me what is wrong with my code?&lt;/P&gt;
&lt;PRE&gt;DATA Chapt17;
	SET Chapt17.earth;
	 lfreq = log(freq + 1);
RUN;
PROC PRINT DATA = chapt17;
RUN; 
* Plotting the data;
SYMBOL1 VALUE="S" COLOR=BLACK;
SYMBOL2 VALUE="W" COLOR=BLACK;


* Plot data Page 7;
PROC GPLOT DATA=Chapt17;
   PLOT freq*Magnitude=Locn;
RUN;


 1          OPTIONS NONOTES NOSTIMER NOSOURCE NOSYNTAXCHECK;
 72         
 73         PROC GPLOT DATA=Chapt17;
 ERROR: Procedure GPLOT not found.
 74            PLOT freq*Magnitude=Locn;
 75         RUN;
 
 NOTE: The SAS System stopped processing this step because of errors.
 NOTE: PROCEDURE GPLOT used (Total process time):
       real time           0.00 seconds
       cpu time            0.00 seconds
       
 76         
 77         OPTIONS NONOTES NOSTIMER NOSOURCE NOSYNTAXCHECK;
 89         &lt;/PRE&gt;</description>
      <pubDate>Sun, 09 Feb 2020 04:08:49 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/PROC-GPLOT-is-not-found/m-p/623365#M19921</guid>
      <dc:creator>kngu022</dc:creator>
      <dc:date>2020-02-09T04:08:49Z</dc:date>
    </item>
    <item>
      <title>Re: PROC GPLOT is not found</title>
      <link>https://communities.sas.com/t5/New-SAS-User/PROC-GPLOT-is-not-found/m-p/623371#M19922</link>
      <description>&lt;P&gt;May be you need to try the new version of the graphic procedures. The older versions are available in your SAS version.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;try the proc sgplot if you are trying the line plot&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc sgplot data=chapt17;
series x=magnitude y=freq / grou=locn;
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Sun, 09 Feb 2020 04:54:56 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/PROC-GPLOT-is-not-found/m-p/623371#M19922</guid>
      <dc:creator>Jagadishkatam</dc:creator>
      <dc:date>2020-02-09T04:54:56Z</dc:date>
    </item>
    <item>
      <title>Re: PROC GPLOT is not found</title>
      <link>https://communities.sas.com/t5/New-SAS-User/PROC-GPLOT-is-not-found/m-p/623374#M19923</link>
      <description>&lt;P&gt;Thanks Jagadishktatam. I want to have scatter plot instead of line, Do you have any solution?&lt;/P&gt;</description>
      <pubDate>Sun, 09 Feb 2020 05:24:21 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/PROC-GPLOT-is-not-found/m-p/623374#M19923</guid>
      <dc:creator>kngu022</dc:creator>
      <dc:date>2020-02-09T05:24:21Z</dc:date>
    </item>
    <item>
      <title>Re: PROC GPLOT is not found</title>
      <link>https://communities.sas.com/t5/New-SAS-User/PROC-GPLOT-is-not-found/m-p/623409#M19926</link>
      <description>&lt;P&gt;Hi:&lt;/P&gt;
&lt;P&gt;&amp;nbsp; SGPLOT has a SCATTER statement. There are numerous examples in the documentation. For example, here: &lt;A href="https://go.documentation.sas.com/?docsetId=grstatproc&amp;amp;docsetTarget=p1lcbd3lhs3t3bn1jk6d8sjt2yqx.htm&amp;amp;docsetVersion=9.4&amp;amp;locale=en"&gt;https://go.documentation.sas.com/?docsetId=grstatproc&amp;amp;docsetTarget=p1lcbd3lhs3t3bn1jk6d8sjt2yqx.htm&amp;amp;docsetVersion=9.4&amp;amp;locale=en&lt;/A&gt; the documentation has 4 examples.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Cynthia&lt;/P&gt;</description>
      <pubDate>Sun, 09 Feb 2020 14:15:49 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/PROC-GPLOT-is-not-found/m-p/623409#M19926</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2020-02-09T14:15:49Z</dc:date>
    </item>
    <item>
      <title>Re: PROC GPLOT is not found</title>
      <link>https://communities.sas.com/t5/New-SAS-User/PROC-GPLOT-is-not-found/m-p/623509#M19941</link>
      <description>&lt;P&gt;Thanks Cynthia for your help. I already managed to solve the problem.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 10 Feb 2020 06:13:03 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/PROC-GPLOT-is-not-found/m-p/623509#M19941</guid>
      <dc:creator>kngu022</dc:creator>
      <dc:date>2020-02-10T06:13:03Z</dc:date>
    </item>
  </channel>
</rss>

