<?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: Less then or equal sign in PROC SGPLOT in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Less-then-or-equal-sign-in-PROC-SGPLOT/m-p/792997#M254106</link>
    <description>&lt;P&gt;Thank you so much! It's perfect.&lt;/P&gt;</description>
    <pubDate>Thu, 27 Jan 2022 21:11:08 GMT</pubDate>
    <dc:creator>Chaupak</dc:creator>
    <dc:date>2022-01-27T21:11:08Z</dc:date>
    <item>
      <title>Less then or equal sign in PROC SGPLOT</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Less-then-or-equal-sign-in-PROC-SGPLOT/m-p/792982#M254102</link>
      <description>&lt;P&gt;Hi, I was trying to draw a series plot by group and display the every group's name in the legend. One of the groups represents a range "&amp;lt;= xx mg". However, I want its label to be displayed as the sepcial character of less than or equal to sign instead of the combination of "&amp;lt;" and "=" in the plot. This is the sample data and code:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=""&gt;DATA plot;
INPUT year value group$;
CARDS;
1 10 &amp;lt;=50
2 15 &amp;lt;=50
3 20 &amp;lt;=50
4 25 &amp;lt;=50
5 30 &amp;lt;=50
1 10 &amp;gt;50
2 30 &amp;gt;50
3 50 &amp;gt;50
4 70 &amp;gt;50
5 90 &amp;gt;50
;

proc sgplot data=plot;
    series x=year y=value / group=group;
run;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;I've tried to replace with "(*ESC*){unicode '2264'x} 50" in the dataset, but it didn't work in PROC SGPLOT. Is there any way to display the right special character in the plot?&lt;/P&gt;</description>
      <pubDate>Thu, 27 Jan 2022 19:55:18 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Less-then-or-equal-sign-in-PROC-SGPLOT/m-p/792982#M254102</guid>
      <dc:creator>Chaupak</dc:creator>
      <dc:date>2022-01-27T19:55:18Z</dc:date>
    </item>
    <item>
      <title>Re: Less then or equal sign in PROC SGPLOT</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Less-then-or-equal-sign-in-PROC-SGPLOT/m-p/792995#M254104</link>
      <description>&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc format;
   value $group '&amp;lt;=50' = "(*ESC*){unicode '2264'x} 50";
   quit;
proc sgplot data=plot;
    series x=year y=value / group=group;
    format group $group.;
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 27 Jan 2022 21:05:05 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Less-then-or-equal-sign-in-PROC-SGPLOT/m-p/792995#M254104</guid>
      <dc:creator>data_null__</dc:creator>
      <dc:date>2022-01-27T21:05:05Z</dc:date>
    </item>
    <item>
      <title>Re: Less then or equal sign in PROC SGPLOT</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Less-then-or-equal-sign-in-PROC-SGPLOT/m-p/792997#M254106</link>
      <description>&lt;P&gt;Thank you so much! It's perfect.&lt;/P&gt;</description>
      <pubDate>Thu, 27 Jan 2022 21:11:08 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Less-then-or-equal-sign-in-PROC-SGPLOT/m-p/792997#M254106</guid>
      <dc:creator>Chaupak</dc:creator>
      <dc:date>2022-01-27T21:11:08Z</dc:date>
    </item>
  </channel>
</rss>

