<?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 SGPLOT in SAS Studio</title>
    <link>https://communities.sas.com/t5/SAS-Studio/PROC-SGPLOT/m-p/464527#M5576</link>
    <description>&lt;P&gt;The documentation for SGPLOT is pretty thorough and there are a lot of examples as well:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="http://documentation.sas.com/?docsetId=grstatproc&amp;amp;docsetTarget=p00mgdlxbij4v3n0zewfb9cpfxu1.htm&amp;amp;docsetVersion=9.4&amp;amp;locale=en" target="_blank"&gt;http://documentation.sas.com/?docsetId=grstatproc&amp;amp;docsetTarget=p00mgdlxbij4v3n0zewfb9cpfxu1.htm&amp;amp;docsetVersion=9.4&amp;amp;locale=en&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, 23 May 2018 18:59:35 GMT</pubDate>
    <dc:creator>Reeza</dc:creator>
    <dc:date>2018-05-23T18:59:35Z</dc:date>
    <item>
      <title>PROC SGPLOT</title>
      <link>https://communities.sas.com/t5/SAS-Studio/PROC-SGPLOT/m-p/464503#M5574</link>
      <description>&lt;P&gt;Hello&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'm trying to use PROC SGPLOT&amp;nbsp; with SAS UE :&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;&lt;FONT color="#0000FF"&gt;&lt;STRONG&gt;proc sgplot&lt;/STRONG&gt;&lt;/FONT&gt; &lt;FONT color="#3366FF"&gt;data&lt;/FONT&gt;=ebouli;
&lt;FONT color="#3366FF"&gt;symbol1 i&lt;/FONT&gt;=join &lt;FONT color="#3366FF"&gt;v&lt;/FONT&gt;=dot;
plot prop*val=&lt;STRONG&gt;&lt;FONT color="#008080"&gt;1&lt;/FONT&gt;&lt;/STRONG&gt; / haxis= &lt;STRONG&gt;&lt;FONT color="#008080"&gt;0&lt;/FONT&gt;&lt;/STRONG&gt; to &lt;STRONG&gt;&lt;FONT color="#008080"&gt;17&lt;/FONT&gt;&lt;/STRONG&gt; by &lt;STRONG&gt;&lt;FONT color="#008080"&gt;1&lt;/FONT&gt;&lt;/STRONG&gt; hminor=&lt;STRONG&gt;&lt;FONT color="#008080"&gt;0&lt;/FONT&gt;&lt;/STRONG&gt; 
	          vaxis= &lt;STRONG&gt;&lt;FONT color="#008080"&gt;0&lt;/FONT&gt;&lt;/STRONG&gt; to &lt;STRONG&gt;&lt;FONT color="#008080"&gt;1&lt;/FONT&gt;&lt;/STRONG&gt; by &lt;STRONG&gt;&lt;FONT color="#008080"&gt;0.2&lt;/FONT&gt;&lt;/STRONG&gt; vminor=&lt;FONT color="#008080"&gt;1&lt;/FONT&gt;;
&lt;STRONG&gt;&lt;FONT color="#0000FF"&gt;run;
quit;&lt;/FONT&gt;&lt;/STRONG&gt;
&lt;FONT color="#3366FF"&gt;goptions reset&lt;/FONT&gt;=all;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;but get this error :&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt; proc sgplot data=ebouli;
 76         symbol1 i=join v=dot;
 76         symbol1 i=join v=dot;
            &lt;FONT color="#FF0000"&gt;_______
            180
 ERROR 180-322: Statement is not valid or it is used out of proper order.&lt;/FONT&gt;
 
 77         plot prop*val=1 / haxis= 0 to 17 by 1 hminor=0
            &lt;FONT color="#FF0000"&gt;____
            180
 ERROR 180-322: Statement is not valid or it is used out of proper order.&lt;/FONT&gt;
 78           vaxis= 0 to 1 by 0.2 vminor=1;
 79         run;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Please help&lt;/P&gt;</description>
      <pubDate>Wed, 23 May 2018 18:26:43 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Studio/PROC-SGPLOT/m-p/464503#M5574</guid>
      <dc:creator>totoilestbeau</dc:creator>
      <dc:date>2018-05-23T18:26:43Z</dc:date>
    </item>
    <item>
      <title>Re: PROC SGPLOT</title>
      <link>https://communities.sas.com/t5/SAS-Studio/PROC-SGPLOT/m-p/464517#M5575</link>
      <description>&lt;P&gt;You are trying to use the syntax for PROC GPLOT (which is not available in SAS UE), but you are using PROC SGPLOT. The syntax for PROC SGPLOT is a little different, but very easy. Try this, which creates the plot you want:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;
proc sgplot data=ebouli;
series y=prop x=val;
xaxis values=(0 to 17);
yaxis values=(0 to 1 by 0.2) minor;
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 23 May 2018 18:46:03 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Studio/PROC-SGPLOT/m-p/464517#M5575</guid>
      <dc:creator>Rick_SAS</dc:creator>
      <dc:date>2018-05-23T18:46:03Z</dc:date>
    </item>
    <item>
      <title>Re: PROC SGPLOT</title>
      <link>https://communities.sas.com/t5/SAS-Studio/PROC-SGPLOT/m-p/464527#M5576</link>
      <description>&lt;P&gt;The documentation for SGPLOT is pretty thorough and there are a lot of examples as well:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="http://documentation.sas.com/?docsetId=grstatproc&amp;amp;docsetTarget=p00mgdlxbij4v3n0zewfb9cpfxu1.htm&amp;amp;docsetVersion=9.4&amp;amp;locale=en" target="_blank"&gt;http://documentation.sas.com/?docsetId=grstatproc&amp;amp;docsetTarget=p00mgdlxbij4v3n0zewfb9cpfxu1.htm&amp;amp;docsetVersion=9.4&amp;amp;locale=en&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, 23 May 2018 18:59:35 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Studio/PROC-SGPLOT/m-p/464527#M5576</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2018-05-23T18:59:35Z</dc:date>
    </item>
    <item>
      <title>Re: PROC SGPLOT</title>
      <link>https://communities.sas.com/t5/SAS-Studio/PROC-SGPLOT/m-p/464551#M5577</link>
      <description>&lt;P&gt;is it possible to have dots at each points on the plot ?&lt;/P&gt;</description>
      <pubDate>Wed, 23 May 2018 19:41:38 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Studio/PROC-SGPLOT/m-p/464551#M5577</guid>
      <dc:creator>totoilestbeau</dc:creator>
      <dc:date>2018-05-23T19:41:38Z</dc:date>
    </item>
    <item>
      <title>Re: PROC SGPLOT</title>
      <link>https://communities.sas.com/t5/SAS-Studio/PROC-SGPLOT/m-p/464569#M5579</link>
      <description>&lt;P&gt;By "dots" I assume you mean "show markers at the data values."&amp;nbsp; use the MARKERS option:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;series y=prop x=val / markers;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 23 May 2018 20:26:26 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Studio/PROC-SGPLOT/m-p/464569#M5579</guid>
      <dc:creator>Rick_SAS</dc:creator>
      <dc:date>2018-05-23T20:26:26Z</dc:date>
    </item>
    <item>
      <title>Re: PROC SGPLOT</title>
      <link>https://communities.sas.com/t5/SAS-Studio/PROC-SGPLOT/m-p/482934#M5988</link>
      <description>&lt;P&gt;Hi ,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am unable to use sas macro date in proc sgplot X axis value.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Below is my code.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;%let Max_date= Max(of Order_Date);&lt;BR /&gt;%let Min_date= Min(of Order_Date);&lt;/P&gt;&lt;P&gt;proc sgplot data=orion.order_fact;&lt;/P&gt;&lt;P&gt;series x=Order_Date y=Total_Retail_Price/ group=Quantity&lt;BR /&gt;break nomissinggroup&lt;BR /&gt;markerattrs=(size=10px)&lt;BR /&gt;lineattrs=(thickness=3px);&lt;BR /&gt;&lt;BR /&gt;xaxis label='DATE' &lt;STRONG&gt;values=(&amp;amp;Min_date. to &amp;amp;Max_date. by day);&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;yaxis grid label='Percent change';&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;</description>
      <pubDate>Tue, 31 Jul 2018 20:13:01 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Studio/PROC-SGPLOT/m-p/482934#M5988</guid>
      <dc:creator>satyamdubey1611</dc:creator>
      <dc:date>2018-07-31T20:13:01Z</dc:date>
    </item>
    <item>
      <title>Re: PROC SGPLOT</title>
      <link>https://communities.sas.com/t5/SAS-Studio/PROC-SGPLOT/m-p/483422#M5990</link>
      <description>Please post your question as a new thread, not a thread with a different question. In this case, only previous respondents will see the post rather than everyone.</description>
      <pubDate>Thu, 02 Aug 2018 14:39:23 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Studio/PROC-SGPLOT/m-p/483422#M5990</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2018-08-02T14:39:23Z</dc:date>
    </item>
  </channel>
</rss>

