<?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: spearman correlation mark in Graphics Programming</title>
    <link>https://communities.sas.com/t5/Graphics-Programming/spearman-correlation-mark/m-p/345101#M12002</link>
    <description>&lt;P&gt;Hi Rick,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;yes, I use SAS9.4 to run this.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;thanks,&lt;/P&gt;&lt;P&gt;chen&lt;/P&gt;</description>
    <pubDate>Tue, 28 Mar 2017 17:47:43 GMT</pubDate>
    <dc:creator>echoli</dc:creator>
    <dc:date>2017-03-28T17:47:43Z</dc:date>
    <item>
      <title>spearman correlation mark</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/spearman-correlation-mark/m-p/345072#M11999</link>
      <description>&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;How I can show&amp;nbsp;&lt;STRONG&gt;ρ&lt;/STRONG&gt; in the graph? I tried to use&amp;nbsp;~{unicode '03C1'x} in my template, but it shows as in the first picture. If I used&amp;nbsp;&lt;SPAN&gt;ρ instead, it shows as in second picture. Any idea about this? Thanks,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;IMG src="https://communities.sas.com/t5/image/serverpage/image-id/7988i071AF8B94CC0CC86/image-size/original?v=1.0&amp;amp;px=-1" border="0" alt="scatter.png" title="scatter.png" /&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 28 Mar 2017 16:46:36 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/spearman-correlation-mark/m-p/345072#M11999</guid>
      <dc:creator>echoli</dc:creator>
      <dc:date>2017-03-28T16:46:36Z</dc:date>
    </item>
    <item>
      <title>Re: spearman correlation mark</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/spearman-correlation-mark/m-p/345084#M12000</link>
      <description>&lt;P&gt;Code used to make the output?&lt;/P&gt;
&lt;P&gt;Any example data?&lt;/P&gt;
&lt;P&gt;Which ods destination is involved?&lt;/P&gt;</description>
      <pubDate>Tue, 28 Mar 2017 17:10:16 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/spearman-correlation-mark/m-p/345084#M12000</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2017-03-28T17:10:16Z</dc:date>
    </item>
    <item>
      <title>Re: spearman correlation mark</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/spearman-correlation-mark/m-p/345085#M12001</link>
      <description>&lt;P&gt;Are those graphs created with JMP or SAS? &amp;nbsp;If JMP, post your question to the &lt;A href="https://community.jmp.com/" target="_self"&gt;JMP Community&lt;/A&gt;.&lt;/P&gt;</description>
      <pubDate>Tue, 28 Mar 2017 17:13:34 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/spearman-correlation-mark/m-p/345085#M12001</guid>
      <dc:creator>Rick_SAS</dc:creator>
      <dc:date>2017-03-28T17:13:34Z</dc:date>
    </item>
    <item>
      <title>Re: spearman correlation mark</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/spearman-correlation-mark/m-p/345101#M12002</link>
      <description>&lt;P&gt;Hi Rick,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;yes, I use SAS9.4 to run this.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;thanks,&lt;/P&gt;&lt;P&gt;chen&lt;/P&gt;</description>
      <pubDate>Tue, 28 Mar 2017 17:47:43 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/spearman-correlation-mark/m-p/345101#M12002</guid>
      <dc:creator>echoli</dc:creator>
      <dc:date>2017-03-28T17:47:43Z</dc:date>
    </item>
    <item>
      <title>Re: spearman correlation mark</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/spearman-correlation-mark/m-p/345181#M12003</link>
      <description>&lt;P&gt;Since you said, "template", I will assume you are using GTL for this example. Your example is also using a cell header, but the text does not appear to be generated by classification, so I will assume you are using an ENTRY inside of a CELLHEADER block. Your ENTRY statement should look something like this:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;entry {unicode '03C1'x} " = 0.338; p &amp;lt; .001" / textattrs=GraphUnicodeText;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You do not need the ODS escape character because entries in GTL support the unicode, sup, and sub escapements outside of quoted strings.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Since you're referencing a character in the "03" range, your default font might not contain that character. If it doesn't, add the TEXTATTRS reference I gave above to use a more full-featured Unicode font.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Hope this helps!&lt;/P&gt;
&lt;P&gt;Dan&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 28 Mar 2017 21:23:40 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/spearman-correlation-mark/m-p/345181#M12003</guid>
      <dc:creator>DanH_sas</dc:creator>
      <dc:date>2017-03-28T21:23:40Z</dc:date>
    </item>
  </channel>
</rss>

