<?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: control marker size on spaghetti plots in Graphics Programming</title>
    <link>https://communities.sas.com/t5/Graphics-Programming/control-marker-size-on-spaghetti-plots/m-p/901729#M24183</link>
    <description>ah yes, that makes sense! I had it before and then removed it when adding groupmc and groupms.</description>
    <pubDate>Mon, 06 Nov 2023 14:11:48 GMT</pubDate>
    <dc:creator>vstorme</dc:creator>
    <dc:date>2023-11-06T14:11:48Z</dc:date>
    <item>
      <title>control marker size on spaghetti plots</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/control-marker-size-on-spaghetti-plots/m-p/901709#M24179</link>
      <description>&lt;P&gt;Dear all,&lt;/P&gt;
&lt;P&gt;I have following code:&lt;/P&gt;
&lt;PRE&gt;data myattrmap;
length linecolor $ 6 linepattern $ 5 markercolor $ 6 markersymbol $ 13;
input ID $ value $ linecolor $ linepattern $ markercolor $ markersymbol $;
datalines;
myid  young teal   solid teal    DiamondFilled
myid  old   purple solid purple  DiamondFilled
;
run;
proc print data = myattrmap;
run;

ods graphics/ reset=all width=16cm ;
title "Results &amp;amp;var by concentration and leaf stage";
Proc SGpanel data = &amp;amp;lib..rides_anno_flag noautolegend dattrmap = myattrmap;
  PanelBy treatment / columns=2;
  series x=date y=&amp;amp;var / group=uniqueID
                         grouplc=leaf lcattrid=myid /*lc line color*/
                         grouplp=leaf lpattrid=myid /*lc line pattern*/
                         groupmc=leaf mcattrid=myid /*lc marker color*/
                         groupms=leaf mcattrid=myid /*lc marker symbol*/
                         markerattrs=(size=10)
                         name='grouping'; 
  keylegend 'grouping' / type=linecolor;
  rowaxis display=(nolabel) grid;
  colaxis values=('11oct2023'd, '18oct2023'd, '25oct2023'd, '2nov2023'd)
          valuesformat = date7.;
  where flag = 0;
run;
title;&lt;/PRE&gt;
&lt;P&gt;according to the SAS documentation, I should be able to control the marker size with markerattrs, but it does not seem to have an effect:&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="vstorme_0-1699274931168.png" style="width: 571px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/89442iD68219733E2EA6C0/image-dimensions/571x259?v=v2" width="571" height="259" role="button" title="vstorme_0-1699274931168.png" alt="vstorme_0-1699274931168.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;I am using sas-analytics-pro on SAS Studio (SAS Viya)&amp;nbsp;&lt;SPAN&gt;version: V.04.00M0P031323&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Can somebody clarify this?&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Thanks, Veronique&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 06 Nov 2023 12:51:47 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/control-marker-size-on-spaghetti-plots/m-p/901709#M24179</guid>
      <dc:creator>vstorme</dc:creator>
      <dc:date>2023-11-06T12:51:47Z</dc:date>
    </item>
    <item>
      <title>Re: control marker size on spaghetti plots</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/control-marker-size-on-spaghetti-plots/m-p/901713#M24180</link>
      <description>&lt;P&gt;Not sure these blog posts contain the answer to your specific question, but wanted to let them know to you anyway:&lt;/P&gt;
&lt;UL class="lia-list-style-type-square"&gt;
&lt;LI&gt;Create spaghetti plots in SAS &lt;BR /&gt;By Rick Wicklin on The DO Loop June 2, 2016&lt;BR /&gt;&lt;A href="https://blogs.sas.com/content/iml/2016/06/02/create-spaghetti-plots-in-sas.html" target="_blank"&gt;https://blogs.sas.com/content/iml/2016/06/02/create-spaghetti-plots-in-sas.html&lt;/A&gt;&lt;/LI&gt;
&lt;LI&gt;Lasagna plots in SAS: When spaghetti plots don't suffice &lt;BR /&gt;By Rick Wicklin on The DO Loop June 8, 2016&lt;BR /&gt;&lt;A href="https://blogs.sas.com/content/iml/2016/06/08/lasagna-plot-in-sas.html" target="_blank"&gt;https://blogs.sas.com/content/iml/2016/06/08/lasagna-plot-in-sas.html&lt;/A&gt;&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;BR, Koen&lt;/P&gt;</description>
      <pubDate>Mon, 06 Nov 2023 13:03:17 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/control-marker-size-on-spaghetti-plots/m-p/901713#M24180</guid>
      <dc:creator>sbxkoenk</dc:creator>
      <dc:date>2023-11-06T13:03:17Z</dc:date>
    </item>
    <item>
      <title>Re: control marker size on spaghetti plots</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/control-marker-size-on-spaghetti-plots/m-p/901714#M24181</link>
      <description>&lt;P&gt;Another option ... try GTL with PROC SGRENDER.&lt;/P&gt;
&lt;H2&gt;Sample&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;I&gt;52962:&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/I&gt;Create a spaghetti plot with the Graph Template Language (GTL)&lt;BR /&gt;&lt;A href="https://support.sas.com/kb/52/962.html" target="_blank"&gt;https://support.sas.com/kb/52/962.html&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/H2&gt;
&lt;P&gt;Koen&lt;/P&gt;</description>
      <pubDate>Mon, 06 Nov 2023 13:07:35 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/control-marker-size-on-spaghetti-plots/m-p/901714#M24181</guid>
      <dc:creator>sbxkoenk</dc:creator>
      <dc:date>2023-11-06T13:07:35Z</dc:date>
    </item>
    <item>
      <title>Re: control marker size on spaghetti plots</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/control-marker-size-on-spaghetti-plots/m-p/901716#M24182</link>
      <description>&lt;P&gt;OK, I found it ...&lt;BR /&gt;You need&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;markers markerattrs=(size=10);  &lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;instead of just&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;markerattrs=(size=10);  &lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Koen&lt;/P&gt;</description>
      <pubDate>Mon, 06 Nov 2023 13:12:34 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/control-marker-size-on-spaghetti-plots/m-p/901716#M24182</guid>
      <dc:creator>sbxkoenk</dc:creator>
      <dc:date>2023-11-06T13:12:34Z</dc:date>
    </item>
    <item>
      <title>Re: control marker size on spaghetti plots</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/control-marker-size-on-spaghetti-plots/m-p/901729#M24183</link>
      <description>ah yes, that makes sense! I had it before and then removed it when adding groupmc and groupms.</description>
      <pubDate>Mon, 06 Nov 2023 14:11:48 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/control-marker-size-on-spaghetti-plots/m-p/901729#M24183</guid>
      <dc:creator>vstorme</dc:creator>
      <dc:date>2023-11-06T14:11:48Z</dc:date>
    </item>
  </channel>
</rss>

