<?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 proc gplot symbol statement in SAS Procedures</title>
    <link>https://communities.sas.com/t5/SAS-Procedures/proc-gplot-symbol-statement/m-p/64127#M18216</link>
    <description>Hi All,&lt;BR /&gt;
&lt;BR /&gt;
I am trying to plot a graph using gplot with area vs date. And I have two categories in area, they being ‘Inside Range’ and ‘Outside Range’.&lt;BR /&gt;
&lt;BR /&gt;
I have got two symbol statement like the following:&lt;BR /&gt;
	symbol1 v=dot h=0.75 c=green; symbol2 v=dot h=0.75 c=red;&lt;BR /&gt;
&lt;BR /&gt;
Now my data is a mix of area and sorted according to date. The x axis represents the date in the ascending order. But I want my data to be joined like the run chart but have different colours for Inside &amp;amp; Outside Range.&lt;BR /&gt;
&lt;BR /&gt;
IF I individually add the i=join statement in both symbols, it connects all the data that are inside range separately to all the data which belong to the category of outside range.&lt;BR /&gt;
&lt;BR /&gt;
Is there anyway where I can have one continous connection of all the points, regardless if it belongs to the category of inside range or outside range. The only way I want to differentiate the above categories is by colour?</description>
    <pubDate>Tue, 10 May 2011 09:18:31 GMT</pubDate>
    <dc:creator>deleted_user</dc:creator>
    <dc:date>2011-05-10T09:18:31Z</dc:date>
    <item>
      <title>proc gplot symbol statement</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/proc-gplot-symbol-statement/m-p/64127#M18216</link>
      <description>Hi All,&lt;BR /&gt;
&lt;BR /&gt;
I am trying to plot a graph using gplot with area vs date. And I have two categories in area, they being ‘Inside Range’ and ‘Outside Range’.&lt;BR /&gt;
&lt;BR /&gt;
I have got two symbol statement like the following:&lt;BR /&gt;
	symbol1 v=dot h=0.75 c=green; symbol2 v=dot h=0.75 c=red;&lt;BR /&gt;
&lt;BR /&gt;
Now my data is a mix of area and sorted according to date. The x axis represents the date in the ascending order. But I want my data to be joined like the run chart but have different colours for Inside &amp;amp; Outside Range.&lt;BR /&gt;
&lt;BR /&gt;
IF I individually add the i=join statement in both symbols, it connects all the data that are inside range separately to all the data which belong to the category of outside range.&lt;BR /&gt;
&lt;BR /&gt;
Is there anyway where I can have one continous connection of all the points, regardless if it belongs to the category of inside range or outside range. The only way I want to differentiate the above categories is by colour?</description>
      <pubDate>Tue, 10 May 2011 09:18:31 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/proc-gplot-symbol-statement/m-p/64127#M18216</guid>
      <dc:creator>deleted_user</dc:creator>
      <dc:date>2011-05-10T09:18:31Z</dc:date>
    </item>
    <item>
      <title>Re: proc gplot symbol statement</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/proc-gplot-symbol-statement/m-p/64128#M18217</link>
      <description>It would help if you show the code you are using.&lt;BR /&gt;
&lt;BR /&gt;
Assuming I understand your words properly, I think what you want is:&lt;BR /&gt;
&lt;BR /&gt;
plot area*date=category;</description>
      <pubDate>Tue, 10 May 2011 12:00:46 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/proc-gplot-symbol-statement/m-p/64128#M18217</guid>
      <dc:creator>Paige</dc:creator>
      <dc:date>2011-05-10T12:00:46Z</dc:date>
    </item>
    <item>
      <title>Re: proc gplot symbol statement</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/proc-gplot-symbol-statement/m-p/64129#M18218</link>
      <description>yes sorry that's exactly what I want.&lt;BR /&gt;
&lt;BR /&gt;
Here is my code so far:&lt;BR /&gt;
&lt;BR /&gt;
Goptions ftitle = swiss ftext = zapf ; &lt;BR /&gt;
	symbol1 v=dot h=0.75 c=green; symbol2 v=dot h=0.75 c=red;&lt;BR /&gt;
proc gplot data = data;				&lt;BR /&gt;
	plot area*printdate = range /vaxis=axis1 haxis = axis2&lt;BR /&gt;
									  href='25Nov10'd chref=lightblue lh=4;&lt;BR /&gt;
	axis1 label=(a=90 'Mean Area');&lt;BR /&gt;
	axis2 label=('Print Date');&lt;BR /&gt;
	title2 h=1.5 c=blue  'Area Vs Date (All Data)';&lt;BR /&gt;
run;&lt;BR /&gt;
quit;</description>
      <pubDate>Tue, 10 May 2011 12:04:50 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/proc-gplot-symbol-statement/m-p/64129#M18218</guid>
      <dc:creator>deleted_user</dc:creator>
      <dc:date>2011-05-10T12:04:50Z</dc:date>
    </item>
  </channel>
</rss>

