<?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 Scatter Plot, Different Symbols for Discrete X Axis Categories in Graphics Programming</title>
    <link>https://communities.sas.com/t5/Graphics-Programming/Scatter-Plot-Different-Symbols-for-Discrete-X-Axis-Categories/m-p/937502#M24857</link>
    <description>&lt;P&gt;I'm doing a scatter plot with only two discrete categories on the X axis.&amp;nbsp; I would like to use two different symbols for each category.&amp;nbsp; I'm used to using a different symbol per&amp;nbsp; third grouping, such as sex, but how can I use a different symbol per category?&amp;nbsp; It seems too simple to do, ha ha.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Here's what I want it to look like:&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="davehalltwp_0-1722276222424.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/98795i450D529EA6A72D5E/image-size/medium?v=v2&amp;amp;px=400" role="button" title="davehalltwp_0-1722276222424.png" alt="davehalltwp_0-1722276222424.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Mon, 29 Jul 2024 18:04:01 GMT</pubDate>
    <dc:creator>davehalltwp</dc:creator>
    <dc:date>2024-07-29T18:04:01Z</dc:date>
    <item>
      <title>Scatter Plot, Different Symbols for Discrete X Axis Categories</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Scatter-Plot-Different-Symbols-for-Discrete-X-Axis-Categories/m-p/937502#M24857</link>
      <description>&lt;P&gt;I'm doing a scatter plot with only two discrete categories on the X axis.&amp;nbsp; I would like to use two different symbols for each category.&amp;nbsp; I'm used to using a different symbol per&amp;nbsp; third grouping, such as sex, but how can I use a different symbol per category?&amp;nbsp; It seems too simple to do, ha ha.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Here's what I want it to look like:&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="davehalltwp_0-1722276222424.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/98795i450D529EA6A72D5E/image-size/medium?v=v2&amp;amp;px=400" role="button" title="davehalltwp_0-1722276222424.png" alt="davehalltwp_0-1722276222424.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 29 Jul 2024 18:04:01 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Scatter-Plot-Different-Symbols-for-Discrete-X-Axis-Categories/m-p/937502#M24857</guid>
      <dc:creator>davehalltwp</dc:creator>
      <dc:date>2024-07-29T18:04:01Z</dc:date>
    </item>
    <item>
      <title>Re: Scatter Plot, Different Symbols for Discrete X Axis Categories</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Scatter-Plot-Different-Symbols-for-Discrete-X-Axis-Categories/m-p/937506#M24858</link>
      <description>&lt;P&gt;Example:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;ods graphics/attrpriority=none;
proc sgplot data=sashelp.class;
    styleattrs datasymbols=(asterisk circle diamond triangle plus x);
    scatter x=age y=weight/group=age grouporder=ascending;
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 29 Jul 2024 18:35:49 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Scatter-Plot-Different-Symbols-for-Discrete-X-Axis-Categories/m-p/937506#M24858</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2024-07-29T18:35:49Z</dc:date>
    </item>
    <item>
      <title>Re: Scatter Plot, Different Symbols for Discrete X Axis Categories</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Scatter-Plot-Different-Symbols-for-Discrete-X-Axis-Categories/m-p/937512#M24859</link>
      <description>&lt;P&gt;The ATTRPRIORITY=NONE option is the key here. Just specifying that option will get you different symbols from the active style. The list of symbols in the procedure is not required.&lt;/P&gt;</description>
      <pubDate>Mon, 29 Jul 2024 18:46:23 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Scatter-Plot-Different-Symbols-for-Discrete-X-Axis-Categories/m-p/937512#M24859</guid>
      <dc:creator>DanH_sas</dc:creator>
      <dc:date>2024-07-29T18:46:23Z</dc:date>
    </item>
    <item>
      <title>Re: Scatter Plot, Different Symbols for Discrete X Axis Categories</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Scatter-Plot-Different-Symbols-for-Discrete-X-Axis-Categories/m-p/937514#M24860</link>
      <description>&lt;P&gt;Thank you, Paige.&amp;nbsp; Much better now.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Dan, thank you as well.&amp;nbsp; It turned out that I had commented out the ODS GRAPHICS line, which didn't have the ATTRPRIORITY setting anyway.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;As usual, I've learned from you all...&lt;/P&gt;</description>
      <pubDate>Mon, 29 Jul 2024 18:55:40 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Scatter-Plot-Different-Symbols-for-Discrete-X-Axis-Categories/m-p/937514#M24860</guid>
      <dc:creator>davehalltwp</dc:creator>
      <dc:date>2024-07-29T18:55:40Z</dc:date>
    </item>
  </channel>
</rss>

