<?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: Unicode in proc gplot in Graphics Programming</title>
    <link>https://communities.sas.com/t5/Graphics-Programming/Unicode-in-proc-gplot/m-p/455423#M15639</link>
    <description>&lt;P&gt;Thanks! It IS painful! However, I have to keep it....&lt;/P&gt;</description>
    <pubDate>Wed, 18 Apr 2018 23:55:33 GMT</pubDate>
    <dc:creator>Andrea_Peng</dc:creator>
    <dc:date>2018-04-18T23:55:33Z</dc:date>
    <item>
      <title>Unicode in proc gplot</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Unicode-in-proc-gplot/m-p/454624#M15603</link>
      <description>&lt;P&gt;Hi Guys,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am trying to get a linear graph using proc gplot. It's separated by age group (&amp;lt;80, 80-89 and &amp;gt;=90). When I use ^{UNICODE 2265}90 the plot did not give me a special code"&amp;gt;=90" instead it's&amp;nbsp;&lt;SPAN&gt;^{UNICODE 2265}90 in the graph! I know proc sgplot can deal with this but this code will be buried in a large macro. I need to follow what it used to be--use proc gplot! &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Anyone know how to code them?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;My code is:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&lt;BR /&gt;proc format;&lt;BR /&gt;value ageold 1="&amp;lt;80"&lt;BR /&gt;2="80-89"&lt;BR /&gt;3="^{UNICODE 2265}90"&lt;BR /&gt;999999="TOTAL"&lt;BR /&gt;;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;run;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;proc gplot data=plot90 ;&lt;BR /&gt;format cif percent6. years 3. ageold ageold.;&lt;BR /&gt;plot cif * years = ageold / legend=legend1 haxis=axis1 vaxis=axis2 noframe;&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;quit;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Thanks,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Andrea&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 17 Apr 2018 04:55:23 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Unicode-in-proc-gplot/m-p/454624#M15603</guid>
      <dc:creator>Andrea_Peng</dc:creator>
      <dc:date>2018-04-17T04:55:23Z</dc:date>
    </item>
    <item>
      <title>Re: Unicode in proc gplot</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Unicode-in-proc-gplot/m-p/454655#M15606</link>
      <description>&lt;P&gt;Well to start, you need to tell the system that the escape character is ^:&lt;/P&gt;
&lt;PRE&gt;ods escapechar="^";&lt;/PRE&gt;
&lt;P&gt;Second, why are you using gplot?&amp;nbsp; Move to sgplot and graph template language, they are light years ahead of the ancient graphing system.&lt;/P&gt;</description>
      <pubDate>Tue, 17 Apr 2018 08:13:02 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Unicode-in-proc-gplot/m-p/454655#M15606</guid>
      <dc:creator>RW9</dc:creator>
      <dc:date>2018-04-17T08:13:02Z</dc:date>
    </item>
    <item>
      <title>Re: Unicode in proc gplot</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Unicode-in-proc-gplot/m-p/455021#M15623</link>
      <description>&lt;P&gt;Thanks!&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;ods escapechar="^";&lt;/PRE&gt;&lt;P&gt;This code is not working.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;It's a long story why use gplot instead of sgplot. In a word, the code was originally codes years ago and now we need keep consistent with it.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 18 Apr 2018 04:34:48 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Unicode-in-proc-gplot/m-p/455021#M15623</guid>
      <dc:creator>Andrea_Peng</dc:creator>
      <dc:date>2018-04-18T04:34:48Z</dc:date>
    </item>
    <item>
      <title>Re: Unicode in proc gplot</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Unicode-in-proc-gplot/m-p/455059#M15624</link>
      <description>&lt;P&gt;"&lt;SPAN&gt;This code is not working.&amp;nbsp;&lt;/SPAN&gt;" - Does not tell me anything.&amp;nbsp; It doesn't run?&amp;nbsp; It doesn't affect the output?&amp;nbsp;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I have found this old post which does something quite similar.&amp;nbsp; &amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://communities.sas.com/t5/SAS-GRAPH-and-ODS-Graphics/How-to-use-unicode-gt-Symbol-in-SAS-Graph-Legend/td-p/254433" target="_blank"&gt;https://communities.sas.com/t5/SAS-GRAPH-and-ODS-Graphics/How-to-use-unicode-gt-Symbol-in-SAS-Graph-Legend/td-p/254433&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;It seems to be a bit of a pain, but if you insist on using the old graphing system everything will be painful.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 18 Apr 2018 08:34:48 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Unicode-in-proc-gplot/m-p/455059#M15624</guid>
      <dc:creator>RW9</dc:creator>
      <dc:date>2018-04-18T08:34:48Z</dc:date>
    </item>
    <item>
      <title>Re: Unicode in proc gplot</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Unicode-in-proc-gplot/m-p/455423#M15639</link>
      <description>&lt;P&gt;Thanks! It IS painful! However, I have to keep it....&lt;/P&gt;</description>
      <pubDate>Wed, 18 Apr 2018 23:55:33 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Unicode-in-proc-gplot/m-p/455423#M15639</guid>
      <dc:creator>Andrea_Peng</dc:creator>
      <dc:date>2018-04-18T23:55:33Z</dc:date>
    </item>
  </channel>
</rss>

