<?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: markerattrs= option not working in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/markerattrs-option-not-working/m-p/406404#M98952</link>
    <description>&lt;P&gt;At present, I learn to write the proc sgplot code, including its statements and options, such as lineattrs and markerattrs. By way of web resource, I learn to change the format of line via lineattrs option. In addition, I can add the markers option to produce the marker at the data point of broken line chart. The sas code is to be as follows:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;series y=taichung_rain x=month / LEGENDLABEL = 'Taichung' markers lineattrs = (thickness = 2);&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I also find that I can change the marker format of broken line chart via the statement markerattrs.&lt;BR /&gt;(refenence: &lt;A href="http://support.sas.com/documentation/cdl/en/grstatug/63302/HTML/default/viewer.htm#p0qap3adaorc06n1956fdbo6qfci.htm" target="_blank"&gt;http://support.sas.com/documentation/cdl/en/grstatug/63302/HTML/default/viewer.htm#p0qap3adaorc06n1956fdbo6qfci.htm&lt;/A&gt;)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;However, I use the method but the program don't successfully run. Therefore, my question is why the markerattrs option cannot run.&lt;/P&gt;&lt;P&gt;Thank you for your reply&lt;/P&gt;</description>
    <pubDate>Mon, 23 Oct 2017 00:54:40 GMT</pubDate>
    <dc:creator>Cingchih</dc:creator>
    <dc:date>2017-10-23T00:54:40Z</dc:date>
    <item>
      <title>markerattrs= option not working</title>
      <link>https://communities.sas.com/t5/SAS-Programming/markerattrs-option-not-working/m-p/406281#M98893</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;The marker format of curve labelled Taichung could not&amp;nbsp; run, please see attachment file. My software is SAS 9.4.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Image 01.jpg" style="width: 600px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/16129i88D4BB7881529326/image-size/large?v=v2&amp;amp;px=999" role="button" title="Image 01.jpg" alt="Image 01.jpg" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Here is the program:&lt;/SPAN&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc import datafile= 'c:\sasabc\rain.xlsx'  out=testrain replace;
sheet='kkk';
run;

proc sgplot data=testrain;
series y=taipei_rain  x=month / legendlabel = 'Taipei' markers  lineattrs = (thickness = 2  color=tan  pattern=15);

series y=taichung_rain  x=month / LEGENDLABEL = 'Taichung'  markerattrs=(symbol=circle color=blue size=3) lineattrs = (thickness = 2);
/*The marker format of taichung could not be run. Please help solve. */

series y=kaohsiung_rain  x=month / LEGENDLABEL = 'Kaohsiung' markers lineattrs = (thickness = 2);
xaxis type=discrete grid; 
yaxis label='taiwan rain'  grid values= (0 to 1100 by 50);
run;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 21 Oct 2017 17:34:22 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/markerattrs-option-not-working/m-p/406281#M98893</guid>
      <dc:creator>Cingchih</dc:creator>
      <dc:date>2017-10-21T17:34:22Z</dc:date>
    </item>
    <item>
      <title>Re: markerattrs= option not working</title>
      <link>https://communities.sas.com/t5/SAS-Programming/markerattrs-option-not-working/m-p/406284#M98895</link>
      <description>&lt;P&gt;Try adding the MARKERS option to that SERIES statement.&lt;/P&gt;</description>
      <pubDate>Sat, 21 Oct 2017 17:54:31 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/markerattrs-option-not-working/m-p/406284#M98895</guid>
      <dc:creator>WarrenKuhfeld</dc:creator>
      <dc:date>2017-10-21T17:54:31Z</dc:date>
    </item>
    <item>
      <title>Re: markerattrs= option not working</title>
      <link>https://communities.sas.com/t5/SAS-Programming/markerattrs-option-not-working/m-p/406337#M98924</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I try to add the markers option, the question still exists.&lt;/P&gt;&lt;P&gt;I refer to the resource '&lt;A href="http://support.sas.com/documentation/cdl/en/grstatug/63302/HTML/default/viewer.htm#p0qap3adaorc06n1956fdbo6qfci.htm" target="_blank"&gt;http://support.sas.com/documentation/cdl/en/grstatug/63302/HTML/default/viewer.htm#p0qap3adaorc06n1956fdbo6qfci.htm&lt;/A&gt;'&lt;/P&gt;&lt;P&gt;, writing the code. However, the question (bugs ?) still exists.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Image 006.jpg" style="width: 600px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/16132i69174AE2AFD93FC1/image-size/large?v=v2&amp;amp;px=999" role="button" title="Image 006.jpg" alt="Image 006.jpg" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Sun, 22 Oct 2017 01:36:15 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/markerattrs-option-not-working/m-p/406337#M98924</guid>
      <dc:creator>Cingchih</dc:creator>
      <dc:date>2017-10-22T01:36:15Z</dc:date>
    </item>
    <item>
      <title>Re: markerattrs= option not working</title>
      <link>https://communities.sas.com/t5/SAS-Programming/markerattrs-option-not-working/m-p/406359#M98938</link>
      <description>&lt;P&gt;You did not do what I said.&amp;nbsp; Add the Markers option to your original code, just like you had it in the other statements.&lt;/P&gt;</description>
      <pubDate>Sun, 22 Oct 2017 11:39:35 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/markerattrs-option-not-working/m-p/406359#M98938</guid>
      <dc:creator>WarrenKuhfeld</dc:creator>
      <dc:date>2017-10-22T11:39:35Z</dc:date>
    </item>
    <item>
      <title>Re: markerattrs= option not working</title>
      <link>https://communities.sas.com/t5/SAS-Programming/markerattrs-option-not-working/m-p/406404#M98952</link>
      <description>&lt;P&gt;At present, I learn to write the proc sgplot code, including its statements and options, such as lineattrs and markerattrs. By way of web resource, I learn to change the format of line via lineattrs option. In addition, I can add the markers option to produce the marker at the data point of broken line chart. The sas code is to be as follows:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;series y=taichung_rain x=month / LEGENDLABEL = 'Taichung' markers lineattrs = (thickness = 2);&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I also find that I can change the marker format of broken line chart via the statement markerattrs.&lt;BR /&gt;(refenence: &lt;A href="http://support.sas.com/documentation/cdl/en/grstatug/63302/HTML/default/viewer.htm#p0qap3adaorc06n1956fdbo6qfci.htm" target="_blank"&gt;http://support.sas.com/documentation/cdl/en/grstatug/63302/HTML/default/viewer.htm#p0qap3adaorc06n1956fdbo6qfci.htm&lt;/A&gt;)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;However, I use the method but the program don't successfully run. Therefore, my question is why the markerattrs option cannot run.&lt;/P&gt;&lt;P&gt;Thank you for your reply&lt;/P&gt;</description>
      <pubDate>Mon, 23 Oct 2017 00:54:40 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/markerattrs-option-not-working/m-p/406404#M98952</guid>
      <dc:creator>Cingchih</dc:creator>
      <dc:date>2017-10-23T00:54:40Z</dc:date>
    </item>
    <item>
      <title>Re: markerattrs= option not working</title>
      <link>https://communities.sas.com/t5/SAS-Programming/markerattrs-option-not-working/m-p/406408#M98954</link>
      <description>&lt;P&gt;Your first example specified markerattrs but not markers.&amp;nbsp; So I told you to add markers.&amp;nbsp; So instead, you changed markerattrs to markers, so I told you again to go back to your original code and add markers.&amp;nbsp; In your last one, you did not specify markerattrs.&amp;nbsp; Again, add Markers to your original code.&amp;nbsp; Don't change some other option.&lt;/P&gt;</description>
      <pubDate>Mon, 23 Oct 2017 01:08:25 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/markerattrs-option-not-working/m-p/406408#M98954</guid>
      <dc:creator>WarrenKuhfeld</dc:creator>
      <dc:date>2017-10-23T01:08:25Z</dc:date>
    </item>
    <item>
      <title>Re: markerattrs= option not working</title>
      <link>https://communities.sas.com/t5/SAS-Programming/markerattrs-option-not-working/m-p/407332#M99252</link>
      <description>&lt;P&gt;&lt;SPAN&gt;The question has been solved; the correct answer is posted for all to see.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;series y=taichung_rain&amp;nbsp; x=month / LEGENDLABEL = 'Taichung' markers markerattrs=(symbol=starfilled color=blue size=10&amp;nbsp; &amp;nbsp;)&amp;nbsp; lineattrs = (thickness = 2);&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;Thank you so much for the speedy reply.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 25 Oct 2017 15:26:57 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/markerattrs-option-not-working/m-p/407332#M99252</guid>
      <dc:creator>Cingchih</dc:creator>
      <dc:date>2017-10-25T15:26:57Z</dc:date>
    </item>
  </channel>
</rss>

