<?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: Use different markers for groups in a scatter plot in Graphics Programming</title>
    <link>https://communities.sas.com/t5/Graphics-Programming/Re-Use-different-markers-for-groups-in-a-scatter-plot/m-p/887312#M24025</link>
    <description>&lt;P&gt;Being "old school" I would plot the lines, and then annotate the markers (using data step logic when you create the annotate dataset, to control which markers to use).&lt;/P&gt;</description>
    <pubDate>Tue, 01 Aug 2023 13:27:02 GMT</pubDate>
    <dc:creator>GraphGuy</dc:creator>
    <dc:date>2023-08-01T13:27:02Z</dc:date>
    <item>
      <title>Re: Use different markers for groups in a scatter plot</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Re-Use-different-markers-for-groups-in-a-scatter-plot/m-p/773127#M22125</link>
      <description>In this series plot example (&lt;A href="http://robslink.com/SAS/ods2/aaaindex.htm" target="_blank"&gt;http://robslink.com/SAS/ods2/aaaindex.htm&lt;/A&gt;), the markers/colors are the same for both groups. I am trying to get different markers for the different groups. &lt;BR /&gt;&lt;BR /&gt;I do realize that there are SAS examples - like the one I tried to copy. I was hoping that comment would get me something other than a reference to SAS documentation, which I usually check first.</description>
      <pubDate>Fri, 08 Oct 2021 19:07:23 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Re-Use-different-markers-for-groups-in-a-scatter-plot/m-p/773127#M22125</guid>
      <dc:creator>kz_</dc:creator>
      <dc:date>2021-10-08T19:07:23Z</dc:date>
    </item>
    <item>
      <title>Use different markers for groups in a scatter plot</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Re-Use-different-markers-for-groups-in-a-scatter-plot/m-p/772902#M22126</link>
      <description>&lt;P&gt;I am trying to make a plot where the lines have different colors for each group (achieved with seriesplot and group) and there is some kind of marker to indicate whether the trend is increasing or decreasing (not achieved).&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I would like to use markers because the trends are subtle and not necessarily obvious on the plot (even though for this data an increase of 1 or 2% is important.) I tried using the linepatterngroup statement, but the line patterns that SAS automatically chose are hard to distinguish.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Here is what I have:&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;proc template;
  define statgraph groupgraph;
    begingraph / subpixel=on;
      entrytitle 'TITLE';
      layout overlay / xaxisopts=(display=(ticks tickvalues) label="Month")
	                         yaxisopts=(griddisplay=on linearopts=(viewmax=0.30) label="% of monthly x") ;
        seriesplot x=mo y=mo_perc / group=l_group name='a' lineattrs=(thickness=2) 
                  smoothconnect=true linecolorgroup=l_group linepatterngroup=trend_mo;
		
		scatterplot x=mo y=mo_perc / group=trend_mo name='b' markerattrs=(symbol=(circlefilled starfilled));
		
		layout gridded / halign=right valign=top columns=2 columngutter=5;
          discretelegend 'a' / title='Group' type=linecolor location=outside 
                        across=4 halign=left valign=bottom;
          discretelegend 'b' / title='Trend' location=outside 
                        across=4 halign=left valign=bottom itemsize=(linelength=30);
	 endlayout; endlayout; endgraph; end;
run;&lt;/PRE&gt;
&lt;P&gt;The error after the markerattrs statement is:&amp;nbsp;&lt;/P&gt;
&lt;DIV id="sasLogError1_1633646689583" class="sasError"&gt;ERROR 22-322: Expecting a name.&lt;/DIV&gt;
&lt;DIV id="sasLogError2_1633646689583" class="sasError"&gt;ERROR 200-322: The symbol is not recognized and will be ignored.&lt;/DIV&gt;
&lt;DIV class="sasError"&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV class="sasError"&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV class="sasError"&gt;I was going off this (&lt;A href="https://documentation.sas.com/doc/en/pgmsascdc/v_015/grstatgraph/p0icsws0thpaghn1t12m27fyqnjc.htm" target="_blank"&gt;https://documentation.sas.com/doc/en/pgmsascdc/v_015/grstatgraph/p0icsws0thpaghn1t12m27fyqnjc.htm&lt;/A&gt;&lt;span class="lia-unicode-emoji" title=":disappointed_face:"&gt;😞&lt;/span&gt;&lt;/DIV&gt;
&lt;DIV class="sasError"&gt;
&lt;PRE&gt;proc template;
  define statgraph symbolchange;
    begingraph;
      layout overlay;
        scatterplot y=height x=weight /
          markerattrs=(symbol=circlefilled);
      endlayout;
    endgraph;
  end;
run;
&lt;/PRE&gt;
I generally find the limited examples in SAS documentation to be frustrating since I find examples more helpful than the syntax statements.&amp;nbsp;&lt;/DIV&gt;</description>
      <pubDate>Thu, 07 Oct 2021 22:58:55 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Re-Use-different-markers-for-groups-in-a-scatter-plot/m-p/772902#M22126</guid>
      <dc:creator>kz_</dc:creator>
      <dc:date>2021-10-07T22:58:55Z</dc:date>
    </item>
    <item>
      <title>Re: Use different markers for groups in a scatter plot</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Re-Use-different-markers-for-groups-in-a-scatter-plot/m-p/772911#M22127</link>
      <description>&lt;P&gt;Is there a specific reason you're using SGTEMPLATE and not just SGPLOT?&lt;/P&gt;
&lt;P&gt;If you use SGPLOT, use a discrete data attribute map.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://documentation.sas.com/doc/en/vdmmlcdc/8.11/grstatproc/n16ad7597ctbm3n1x9pvpeo5g4gx.htm" target="_blank"&gt;https://documentation.sas.com/doc/en/vdmmlcdc/8.11/grstatproc/n16ad7597ctbm3n1x9pvpeo5g4gx.htm&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Here's a better source of examples for base graphics:&lt;/P&gt;
&lt;P&gt;&lt;A href="http://robslink.com/SAS/ods2/aaaindex.htm" target="_blank"&gt;http://robslink.com/SAS/ods2/aaaindex.htm&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I'm assuming you also know to reference the Examples section in the documentation?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/322176"&gt;@kz_&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;I am trying to make a plot where the lines have different colors for each group (achieved with seriesplot and group) and there is some kind of marker to indicate whether the trend is increasing or decreasing (not achieved).&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I would like to use markers because the trends are subtle and not necessarily obvious on the plot (even though for this data an increase of 1 or 2% is important.) I tried using the linepatterngroup statement, but the line patterns that SAS automatically chose are hard to distinguish.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Here is what I have:&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;proc template;
  define statgraph groupgraph;
    begingraph / subpixel=on;
      entrytitle 'TITLE';
      layout overlay / xaxisopts=(display=(ticks tickvalues) label="Month")
	                         yaxisopts=(griddisplay=on linearopts=(viewmax=0.30) label="% of monthly x") ;
        seriesplot x=mo y=mo_perc / group=l_group name='a' lineattrs=(thickness=2) 
                  smoothconnect=true linecolorgroup=l_group linepatterngroup=trend_mo;
		
		scatterplot x=mo y=mo_perc / group=trend_mo name='b' markerattrs=(symbol=(circlefilled starfilled));
		
		layout gridded / halign=right valign=top columns=2 columngutter=5;
          discretelegend 'a' / title='Group' type=linecolor location=outside 
                        across=4 halign=left valign=bottom;
          discretelegend 'b' / title='Trend' location=outside 
                        across=4 halign=left valign=bottom itemsize=(linelength=30);
	 endlayout; endlayout; endgraph; end;
run;&lt;/PRE&gt;
&lt;P&gt;The error after the markerattrs statement is:&amp;nbsp;&lt;/P&gt;
&lt;DIV id="sasLogError1_1633646689583" class="sasError"&gt;ERROR 22-322: Expecting a name.&lt;/DIV&gt;
&lt;DIV id="sasLogError2_1633646689583" class="sasError"&gt;ERROR 200-322: The symbol is not recognized and will be ignored.&lt;/DIV&gt;
&lt;DIV class="sasError"&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV class="sasError"&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV class="sasError"&gt;I was going off this (&lt;A href="https://documentation.sas.com/doc/en/pgmsascdc/v_015/grstatgraph/p0icsws0thpaghn1t12m27fyqnjc.htm" target="_blank" rel="noopener"&gt;https://documentation.sas.com/doc/en/pgmsascdc/v_015/grstatgraph/p0icsws0thpaghn1t12m27fyqnjc.htm&lt;/A&gt;&lt;span class="lia-unicode-emoji" title=":disappointed_face:"&gt;😞&lt;/span&gt;&lt;/DIV&gt;
&lt;DIV class="sasError"&gt;
&lt;PRE&gt;proc template;
  define statgraph symbolchange;
    begingraph;
      layout overlay;
        scatterplot y=height x=weight /
          markerattrs=(symbol=circlefilled);
      endlayout;
    endgraph;
  end;
run;
&lt;/PRE&gt;
I generally find the limited examples in SAS documentation to be frustrating since I find examples more helpful than the syntax statements.&amp;nbsp;&lt;/DIV&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 07 Oct 2021 23:59:39 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Re-Use-different-markers-for-groups-in-a-scatter-plot/m-p/772911#M22127</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2021-10-07T23:59:39Z</dc:date>
    </item>
    <item>
      <title>Re: Use different markers for groups in a scatter plot</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Re-Use-different-markers-for-groups-in-a-scatter-plot/m-p/773135#M22128</link>
      <description>I've moved your question (albeit out of order) to the Graphics forum - you've been posting in the new user forum. &lt;BR /&gt;Hopefully someone else can answer your question, I don't know the answer within SGTEMPLATE but do within SGPLOT, ergo my suggestion. &lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Fri, 08 Oct 2021 19:26:07 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Re-Use-different-markers-for-groups-in-a-scatter-plot/m-p/773135#M22128</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2021-10-08T19:26:07Z</dc:date>
    </item>
    <item>
      <title>Re: Use different markers for groups in a scatter plot</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Re-Use-different-markers-for-groups-in-a-scatter-plot/m-p/773162#M22131</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/322176"&gt;@kz_&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;In this series plot example (&lt;A href="http://robslink.com/SAS/ods2/aaaindex.htm" target="_blank" rel="noopener"&gt;http://robslink.com/SAS/ods2/aaaindex.htm&lt;/A&gt;), the markers/colors are the same for both groups. I am trying to get different markers for the different groups. &lt;BR /&gt;&lt;BR /&gt;I do realize that there are SAS examples - like the one I tried to copy. I was hoping that comment would get me something other than a reference to SAS documentation, which I usually check first.&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;The linked page shows &lt;STRONG&gt;4&lt;/STRONG&gt; series plots. Which one? None of those creates the same color for" both groups" unless possibly you are using gray-scale style and can't tell the "colors" apart. None of those examples use Proc template and Sgrender either. So, what code are you using?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 09 Oct 2021 18:42:03 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Re-Use-different-markers-for-groups-in-a-scatter-plot/m-p/773162#M22131</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2021-10-09T18:42:03Z</dc:date>
    </item>
    <item>
      <title>Re: Use different markers for groups in a scatter plot</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Re-Use-different-markers-for-groups-in-a-scatter-plot/m-p/773466#M22134</link>
      <description>The reason for the confusion is that I am using two sets of groups. That is why I want different line colors AND different markers. &lt;BR /&gt;&lt;BR /&gt;In the example series plot, there is a pink line with pink markers and a blue line with blue markers. &lt;BR /&gt;&lt;BR /&gt;In the plot that I am trying to create there will be 7 or 8 lines of different colors (first group). Then I want two different sets of markers on the lines to indicate the second group, i.e., the groups aren't nested. &lt;BR /&gt;&lt;BR /&gt;I got SAS to this by showing one group with a dashed line and the other group with solid lines. Unfortunately the way SAS prints the dashed line doesn't aid much in distinguishing the groups. That is why I wanted to try for markers.</description>
      <pubDate>Mon, 11 Oct 2021 19:39:23 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Re-Use-different-markers-for-groups-in-a-scatter-plot/m-p/773466#M22134</guid>
      <dc:creator>kz_</dc:creator>
      <dc:date>2021-10-11T19:39:23Z</dc:date>
    </item>
    <item>
      <title>Re: Use different markers for groups in a scatter plot</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Re-Use-different-markers-for-groups-in-a-scatter-plot/m-p/773467#M22135</link>
      <description>Also, I posted the example code that I used in the question. I didn't use the code in that example, I referenced it because someone else suggested it above.</description>
      <pubDate>Mon, 11 Oct 2021 19:40:07 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Re-Use-different-markers-for-groups-in-a-scatter-plot/m-p/773467#M22135</guid>
      <dc:creator>kz_</dc:creator>
      <dc:date>2021-10-11T19:40:07Z</dc:date>
    </item>
    <item>
      <title>Re: Use different markers for groups in a scatter plot</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Re-Use-different-markers-for-groups-in-a-scatter-plot/m-p/773470#M22136</link>
      <description>Can you suggest how to do it in sgplot then? The example you suggested only has two groups, so I don't understand how to use it. The marker color and line color match - i.e., they aren't distinguishing separate things. &lt;BR /&gt;&lt;BR /&gt;I need a plot with two sets of groups. One has seven classes and the other has two. They are not nested.</description>
      <pubDate>Mon, 11 Oct 2021 19:52:02 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Re-Use-different-markers-for-groups-in-a-scatter-plot/m-p/773470#M22136</guid>
      <dc:creator>kz_</dc:creator>
      <dc:date>2021-10-11T19:52:02Z</dc:date>
    </item>
    <item>
      <title>Re: Use different markers for groups in a scatter plot</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Re-Use-different-markers-for-groups-in-a-scatter-plot/m-p/773686#M22146</link>
      <description>Did you look at the discrete attribute maps example - the very first link I included?</description>
      <pubDate>Tue, 12 Oct 2021 16:07:08 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Re-Use-different-markers-for-groups-in-a-scatter-plot/m-p/773686#M22146</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2021-10-12T16:07:08Z</dc:date>
    </item>
    <item>
      <title>Re: Use different markers for groups in a scatter plot</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Re-Use-different-markers-for-groups-in-a-scatter-plot/m-p/773717#M22147</link>
      <description>&lt;P&gt;Here's how to setup an attribute map in GTL using the example you listed earlier:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;ods path WORK.TEMPLAT(UPDATE) SASHELP.TMPLMST (READ);
proc template;
  define statgraph symbolchange;
    begingraph;
      discreteattrmap name="attrs" / ignorecase=true DISCRETELEGENDENTRYPOLICY=ATTRMAP;
           value 'F' / lineattrs=(color=red pattern=1) markerattrs=(symbol=triangle color=blue);
           value 'M' / lineattrs=(color=blue pattern=2) markerattrs=(symbol=triangle color=red);
      enddiscreteattrmap;
      discreteattrvar attrvar=_attrs_ var=sex attrmap="attrs" ; 
      layout overlay;
        seriesplot y=height x=weight / group=_attrs_ name='a';
        scatterplot y=height x=weight / group=_attrs_ name='b';
        mergedlegend 'a' 'b'/ location=inside autoalign=(bottom);
      endlayout;
    endgraph;
  end;
run;

ods graphics / reset;
proc sgrender data=sashelp.class template=symbolchange;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;The discreteattrmap block is similar to a proc format section, but for each value you list out you can set the individual style elements (markerattrs, lineattrs, etc.).&amp;nbsp; You then setup a temporary variable with discreteattrvar that gets mapped to the variable that contains the values, and use that temporary variable in a GROUP option in your graph statements.&lt;/P&gt;
&lt;P&gt;If you need the style to be based on two different variables (for lines and markers) there are two options.&amp;nbsp; First is to make two different attribute maps (named differently) and assign them to your series and scatter plot statements individually.&amp;nbsp; The second option is to make a new variable in your dataset with the unique combinations of the two variables (e.g. A and B = 1, A and C=2, B and C=3) and use the new variable in the attribute map.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;In the above example I used a merged legend to combine the series and scatter plot legends together to get the appropriate legend that shows lines and markers together.&amp;nbsp; There's supposed to be a way that you can directly feed an attribute map into a legend but I haven't been able to get it to work so there could be a bug there.&lt;/P&gt;</description>
      <pubDate>Tue, 12 Oct 2021 18:38:45 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Re-Use-different-markers-for-groups-in-a-scatter-plot/m-p/773717#M22147</guid>
      <dc:creator>JeffMeyers</dc:creator>
      <dc:date>2021-10-12T18:38:45Z</dc:date>
    </item>
    <item>
      <title>Re: Use different markers for groups in a scatter plot</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Re-Use-different-markers-for-groups-in-a-scatter-plot/m-p/885511#M23994</link>
      <description>&lt;P&gt;Hi, I was also looking for a quick way to get different markers for different groups in PROC SGPLOT and found this.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;ods graphics on / attrpriority=none;

proc sgplot data=sashelp.iris;
   title 'Fisher (1936) Iris Data';
   styleattrs datasymbols=(circlefilled squarefilled starfilled);
   scatter x=petallength y=petalwidth / group=species markerattrs=(size=5px);
run;

ods graphics / reset;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Source&lt;/P&gt;
&lt;P&gt;&lt;A href="https://documentation.sas.com/doc/en/pgmsascdc/9.4_3.3/statug/statug_odsgraph_sect013.htm" target="_self"&gt;https://documentation.sas.com/doc/en/pgmsascdc/9.4_3.3/statug/statug_odsgraph_sect013.htm&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 19 Jul 2023 17:58:32 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Re-Use-different-markers-for-groups-in-a-scatter-plot/m-p/885511#M23994</guid>
      <dc:creator>whs278</dc:creator>
      <dc:date>2023-07-19T17:58:32Z</dc:date>
    </item>
    <item>
      <title>Re: Use different markers for groups in a scatter plot</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Re-Use-different-markers-for-groups-in-a-scatter-plot/m-p/885515#M23995</link>
      <description>&lt;P&gt;You might want to brush up on attribute priority. I hope you find this discussion helpful. We needed options for black and white, color, color but ok for color blind, etc, and so we came up with attribute priority.&amp;nbsp; &lt;A href="http://documentation.sas.com/doc/en/pgmsascdc/9.4_3.5/statug/statug_odsgraph_sect050.htm" target="_blank"&gt;http://documentation.sas.com/doc/en/pgmsascdc/9.4_3.5/statug/statug_odsgraph_sect050.htm&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 19 Jul 2023 18:23:04 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Re-Use-different-markers-for-groups-in-a-scatter-plot/m-p/885515#M23995</guid>
      <dc:creator>WarrenKuhfeld</dc:creator>
      <dc:date>2023-07-19T18:23:04Z</dc:date>
    </item>
    <item>
      <title>Re: Use different markers for groups in a scatter plot</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Re-Use-different-markers-for-groups-in-a-scatter-plot/m-p/887312#M24025</link>
      <description>&lt;P&gt;Being "old school" I would plot the lines, and then annotate the markers (using data step logic when you create the annotate dataset, to control which markers to use).&lt;/P&gt;</description>
      <pubDate>Tue, 01 Aug 2023 13:27:02 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Re-Use-different-markers-for-groups-in-a-scatter-plot/m-p/887312#M24025</guid>
      <dc:creator>GraphGuy</dc:creator>
      <dc:date>2023-08-01T13:27:02Z</dc:date>
    </item>
  </channel>
</rss>

