<?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: Why legend cannot show symbol ≤ in a kaplan-Meier curve? in Graphics Programming</title>
    <link>https://communities.sas.com/t5/Graphics-Programming/Why-legend-cannot-show-symbol-in-a-kaplan-Meier-curve/m-p/177124#M6491</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;That's great to hear Sanjay. I'm looking forward to using that.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 12 Jan 2015 16:46:26 GMT</pubDate>
    <dc:creator>djrisks</dc:creator>
    <dc:date>2015-01-12T16:46:26Z</dc:date>
    <item>
      <title>Why legend cannot show symbol ≤ in a kaplan-Meier curve?</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Why-legend-cannot-show-symbol-in-a-kaplan-Meier-curve/m-p/177115#M6482</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;BR /&gt;Dear All,&lt;/P&gt;&lt;P&gt;Here is my syntax:&lt;/P&gt;&lt;P&gt;ods listing sge = on ;&lt;BR /&gt;proc lifetest data = primary2 plot=(s) graphics;&lt;BR /&gt;time month*status(0);&lt;BR /&gt;strata agecat;&lt;BR /&gt;format agecat agecat.;&lt;BR /&gt;title'survival analysis based on age';&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;Here is my format:&lt;BR /&gt;value agecat&lt;BR /&gt;&amp;nbsp;&amp;nbsp; 0= '≤65'&lt;BR /&gt;&amp;nbsp;&amp;nbsp; 1= '&amp;gt;65';&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; font-family: Courier New;"&gt;Graph is attached.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; font-family: Courier New;"&gt;Is there a way to show symbol ≤ in the graph?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; font-family: Courier New;"&gt;Thanks for your help&lt;/SPAN&gt;&lt;/P&gt;&lt;BR /&gt;&lt;IMG src="https://communities.sas.com/t5/image/serverpage/image-id/10937iA91F7FB08C2C5965/image-size/large?v=1.0&amp;amp;px=600" border="0" alt="KM2.png" title="KM2.png" /&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 09 Jan 2015 23:29:17 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Why-legend-cannot-show-symbol-in-a-kaplan-Meier-curve/m-p/177115#M6482</guid>
      <dc:creator>xinjian</dc:creator>
      <dc:date>2015-01-09T23:29:17Z</dc:date>
    </item>
    <item>
      <title>Re: Why legend cannot show symbol ≤ in a kaplan-Meier curve?</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Why-legend-cannot-show-symbol-in-a-kaplan-Meier-curve/m-p/177116#M6483</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The issue is likely caused by the character set you're using (I assume it's single byte). Below code shows you what's available to you in single byte.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data _null_;&lt;/P&gt;&lt;P&gt;&amp;nbsp; put "Session encoding is: &amp;amp;SYSENCODING";&lt;/P&gt;&lt;P&gt;&amp;nbsp; do i=0 to 255;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; char=BYTE (i);&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; put i= @10 char;&lt;/P&gt;&lt;P&gt;&amp;nbsp; end;&lt;/P&gt;&lt;P&gt;&amp;nbsp; stop;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It's possible to use more characters but then you need to switch over to MBCS (eg. UTF-8): &lt;A href="http://support.sas.com/documentation/cdl/en/nlsref/67399/HTML/default/viewer.htm#p165q9ecrpnvabn1t7u2gh1oovgr.htm" title="http://support.sas.com/documentation/cdl/en/nlsref/67399/HTML/default/viewer.htm#p165q9ecrpnvabn1t7u2gh1oovgr.htm"&gt;SAS(R) 9.4 National Language Support (NLS): Reference Guide, Third Edition&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 10 Jan 2015 01:08:30 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Why-legend-cannot-show-symbol-in-a-kaplan-Meier-curve/m-p/177116#M6483</guid>
      <dc:creator>Patrick</dc:creator>
      <dc:date>2015-01-10T01:08:30Z</dc:date>
    </item>
    <item>
      <title>Re: Why legend cannot show symbol ≤ in a kaplan-Meier curve?</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Why-legend-cannot-show-symbol-in-a-kaplan-Meier-curve/m-p/177117#M6484</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;BR /&gt;Hi Patrick,&lt;/P&gt;&lt;P&gt;Run your code, I cannot find symbol ≤ in my SAS 9.4.&amp;nbsp;&amp;nbsp; Should I use encoding=UTF-8 for ods statement to solve my problem? Can you teach me how to do it?&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 10 Jan 2015 03:42:01 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Why-legend-cannot-show-symbol-in-a-kaplan-Meier-curve/m-p/177117#M6484</guid>
      <dc:creator>xinjian</dc:creator>
      <dc:date>2015-01-10T03:42:01Z</dc:date>
    </item>
    <item>
      <title>Re: Why legend cannot show symbol ≤ in a kaplan-Meier curve?</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Why-legend-cannot-show-symbol-in-a-kaplan-Meier-curve/m-p/177118#M6485</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It's not only about printing but already about passing a multi-byte value to a format and then store such a value as part of the format. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You could make your life much easier by using single byte like below:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;proc format;&lt;/P&gt;&lt;P&gt;&amp;nbsp; value agecat&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 0= '&amp;lt;= 65'&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 1= '&amp;gt; 65'&lt;/P&gt;&lt;P&gt;&amp;nbsp; ;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 10 Jan 2015 05:34:16 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Why-legend-cannot-show-symbol-in-a-kaplan-Meier-curve/m-p/177118#M6485</guid>
      <dc:creator>Patrick</dc:creator>
      <dc:date>2015-01-10T05:34:16Z</dc:date>
    </item>
    <item>
      <title>Re: Why legend cannot show symbol ≤ in a kaplan-Meier curve?</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Why-legend-cannot-show-symbol-in-a-kaplan-Meier-curve/m-p/177119#M6486</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;One way to do this, is to use the Unicode, i.e. "^{unicode '2264'x} 65"&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Firstly though, we need to output a dataset and this can be done using the OUTSURV statement in Proc Lifetest, and then we can use GTL to produce the KM figure.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can adapt the code below to display the sign you want.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;data BMT;&lt;BR /&gt;&amp;nbsp; set sashelp.BMT;&lt;BR /&gt;&amp;nbsp; if group = "ALL" then groupn = 1;&lt;BR /&gt;&amp;nbsp; else if group = "AML-Low Risk" then groupn = 2;&lt;BR /&gt;&amp;nbsp; else if group = "AML-High Risk" then groupn = 3;&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;proc lifetest data=BMT plots=survival(atrisk=0 to 2500 by 500) outsurv = outsurv;&lt;BR /&gt;&amp;nbsp;&amp;nbsp; time T * Status(0);&lt;BR /&gt;&amp;nbsp;&amp;nbsp; strata Groupn / test=logrank adjust=sidak;&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;ods escapechar&amp;nbsp; = "^";&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;proc template;&lt;BR /&gt;&amp;nbsp; define statgraph kaplan;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; begingraph;&lt;BR /&gt;&amp;nbsp;&amp;nbsp; layout overlay / yaxisopts = (label = "Survial Probability") xaxisopts = (label = "Months");&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; stepplot y = eval(ifn(stratum = 1, survival, .)) x = eval(ifn(stratum = 1, t, .)) / name = "leg" legendlabel = "^{unicode '2264'x} 65" lineattrs = GRAPHDATA1;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; scatterplot y = eval(ifn(stratum = 1 and _CENSOR_ = 1, survival, .)) x = eval(ifn(stratum = 1 and _CENSOR_ = 1, t, .)) / markerattrs = (color = GRAPHDATA1:color symbol = plus);&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; stepplot y = eval(ifn(stratum = 2, survival, .)) x = eval(ifn(stratum = 2, t, .)) / name = "leg2" legendlabel = "&amp;gt; 65" lineattrs = GRAPHDATA2;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; scatterplot y = eval(ifn(stratum = 2 and _CENSOR_ = 1, survival, .)) x = eval(ifn(stratum = 2 and _CENSOR_ = 1, t, .)) / markerattrs = (color = GRAPHDATA2:color symbol = plus);&lt;/P&gt;&lt;P&gt;&amp;nbsp; discretelegend "leg" "leg2";&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; endlayout;&lt;BR /&gt; endgraph;&lt;BR /&gt;&amp;nbsp; end;&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;proc sgrender data = outsurv template = kaplan;&lt;BR /&gt;run;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 10 Jan 2015 09:21:39 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Why-legend-cannot-show-symbol-in-a-kaplan-Meier-curve/m-p/177119#M6486</guid>
      <dc:creator>djrisks</dc:creator>
      <dc:date>2015-01-10T09:21:39Z</dc:date>
    </item>
    <item>
      <title>Re: Why legend cannot show symbol ≤ in a kaplan-Meier curve?</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Why-legend-cannot-show-symbol-in-a-kaplan-Meier-curve/m-p/177120#M6487</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;BR /&gt;Hi Patrick and djrisks, Thanks your help.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 10 Jan 2015 16:40:44 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Why-legend-cannot-show-symbol-in-a-kaplan-Meier-curve/m-p/177120#M6487</guid>
      <dc:creator>xinjian</dc:creator>
      <dc:date>2015-01-10T16:40:44Z</dc:date>
    </item>
    <item>
      <title>Re: Why legend cannot show symbol ≤ in a kaplan-Meier curve?</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Why-legend-cannot-show-symbol-in-a-kaplan-Meier-curve/m-p/177121#M6488</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If it works, please mark question as answered &lt;img id="smileyhappy" class="emoticon emoticon-smileyhappy" src="https://communities.sas.com/i/smilies/16x16_smiley-happy.png" alt="Smiley Happy" title="Smiley Happy" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 10 Jan 2015 17:46:37 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Why-legend-cannot-show-symbol-in-a-kaplan-Meier-curve/m-p/177121#M6488</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2015-01-10T17:46:37Z</dc:date>
    </item>
    <item>
      <title>Re: Why legend cannot show symbol ≤ in a kaplan-Meier curve?</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Why-legend-cannot-show-symbol-in-a-kaplan-Meier-curve/m-p/177122#M6489</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;STRONG&gt;FYI, something to look forward to in SAS 9.4M3&lt;/STRONG&gt;.&amp;nbsp; See legend in this graph. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Unicode strings in User Defined Formats will be supported in both GTL and SG across the board.&amp;nbsp; You can use this to get such character strings into the legend, or the axis tick values or data labels.&amp;nbsp; &lt;STRONG&gt;Note:&lt;/STRONG&gt;&amp;nbsp; &lt;STRONG&gt;Unicode strings can be included in the axis labels by using the LABEL option on the axis since SAS9.2. &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;{SUP} and {SUB} still cannot be supported. But most numeric sub and super scripts can be found in Unicode fonts.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG __jive_id="8680" alt="UDF.png" class="jive-image-thumbnail jive-image" src="https://communities.sas.com/legacyfs/online/8680_UDF.png" width="450" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 12 Jan 2015 16:31:05 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Why-legend-cannot-show-symbol-in-a-kaplan-Meier-curve/m-p/177122#M6489</guid>
      <dc:creator>Jay54</dc:creator>
      <dc:date>2015-01-12T16:31:05Z</dc:date>
    </item>
    <item>
      <title>Re: Why legend cannot show symbol ≤ in a kaplan-Meier curve?</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Why-legend-cannot-show-symbol-in-a-kaplan-Meier-curve/m-p/177123#M6490</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sanjay,&lt;/P&gt;&lt;P&gt;I got my SAS 9.4 TS level1 M1last September. Is the SAS 9.4 M3 available soon? I used &amp;lt;= for now which I am not sure the journal will like it.&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Xinjian&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 12 Jan 2015 16:43:05 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Why-legend-cannot-show-symbol-in-a-kaplan-Meier-curve/m-p/177123#M6490</guid>
      <dc:creator>xinjian</dc:creator>
      <dc:date>2015-01-12T16:43:05Z</dc:date>
    </item>
    <item>
      <title>Re: Why legend cannot show symbol ≤ in a kaplan-Meier curve?</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Why-legend-cannot-show-symbol-in-a-kaplan-Meier-curve/m-p/177124#M6491</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;That's great to hear Sanjay. I'm looking forward to using that.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 12 Jan 2015 16:46:26 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Why-legend-cannot-show-symbol-in-a-kaplan-Meier-curve/m-p/177124#M6491</guid>
      <dc:creator>djrisks</dc:creator>
      <dc:date>2015-01-12T16:46:26Z</dc:date>
    </item>
    <item>
      <title>Re: Why legend cannot show symbol ≤ in a kaplan-Meier curve?</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Why-legend-cannot-show-symbol-in-a-kaplan-Meier-curve/m-p/177125#M6492</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Xinjian.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Just letting you know that you can also obtain the correct "≤" using the example that I showed. If you have any questions about that example, please let me know.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 12 Jan 2015 17:08:04 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Why-legend-cannot-show-symbol-in-a-kaplan-Meier-curve/m-p/177125#M6492</guid>
      <dc:creator>djrisks</dc:creator>
      <dc:date>2015-01-12T17:08:04Z</dc:date>
    </item>
    <item>
      <title>Re: Why legend cannot show symbol ≤ in a kaplan-Meier curve?</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Why-legend-cannot-show-symbol-in-a-kaplan-Meier-curve/m-p/177126#M6493</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The issue is of supporting the Unicode values when they come from data, like group values.&amp;nbsp; Unicode values are supported when they are provided in a SG or GTL option, like LABEL or LEGENDLABEL.&amp;nbsp; But not in the data itself as yet.&amp;nbsp; With SAS 9.4M3 (release this summer) will allow this with Unicode in UDF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If this is really necessary, and you are willing to write a bit more code, you can get what you want with some customization.&amp;nbsp; See my program and graph below.&amp;nbsp; I have essentially created multi-column data for weights for kids &amp;lt;= 13 and over 13 (instead of a group variable).&amp;nbsp; Now, I plot two scatter plots with each of the data columns against "Height".&amp;nbsp; Now, for each scatter plot, I assign the LEGENDLABEL I want including the Unicode value.&amp;nbsp; &lt;STRONG&gt;Note:&amp;nbsp; This will work with SAS 9.2 and above.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;With Survival data, you will have to run proc Lifetest, and get back the survival data for plotting.&amp;nbsp; Then restructure the data from GROUP case to Multi-Column. Now, use your own SGPLOT program with Series overlays with LEGENDLABELS instead of a Grouped series plot.&amp;nbsp; See various examples in Graphically Speaking for &lt;A href="http://blogs.sas.com/content/graphicallyspeaking/2014/02/09/survival-plot/"&gt;Survival Plots using SGPLOT&lt;/A&gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG __jive_id="8682" alt="Unicode.png" class="jive-image-thumbnail jive-image" src="https://communities.sas.com/legacyfs/online/8682_Unicode.png" width="450" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data class;&lt;/P&gt;&lt;P&gt;&amp;nbsp; keep name height weight_AgeLE13 weight_AgeGT13;&lt;/P&gt;&lt;P&gt;&amp;nbsp; set sashelp.class;&lt;/P&gt;&lt;P&gt;&amp;nbsp; if age le 13 then weight_AgeLE13=weight;&lt;/P&gt;&lt;P&gt;&amp;nbsp; else weight_AgeGT13=weight;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;proc sgplot data=class;&lt;/P&gt;&lt;P&gt;&amp;nbsp; scatter x=height y=weight_AgeLE13 / legendlabel="Age ~{Unicode&amp;nbsp; '2264'x} 13";&lt;/P&gt;&lt;P&gt;&amp;nbsp; scatter x=height y=weight_AgeGT13 / legendlabel="Age &amp;gt; 13";&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 12 Jan 2015 18:13:35 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Why-legend-cannot-show-symbol-in-a-kaplan-Meier-curve/m-p/177126#M6493</guid>
      <dc:creator>Jay54</dc:creator>
      <dc:date>2015-01-12T18:13:35Z</dc:date>
    </item>
    <item>
      <title>Re: Why legend cannot show symbol ≤ in a kaplan-Meier curve?</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Why-legend-cannot-show-symbol-in-a-kaplan-Meier-curve/m-p/177127#M6494</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;BR /&gt;hi djrisks,&lt;/P&gt;&lt;P&gt;I got it.&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 15 Jan 2015 13:06:45 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Why-legend-cannot-show-symbol-in-a-kaplan-Meier-curve/m-p/177127#M6494</guid>
      <dc:creator>xinjian</dc:creator>
      <dc:date>2015-01-15T13:06:45Z</dc:date>
    </item>
    <item>
      <title>Re: Why legend cannot show symbol ≤ in a kaplan-Meier curve?</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Why-legend-cannot-show-symbol-in-a-kaplan-Meier-curve/m-p/177128#M6495</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You're welcome xinjian!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 15 Jan 2015 18:13:17 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Why-legend-cannot-show-symbol-in-a-kaplan-Meier-curve/m-p/177128#M6495</guid>
      <dc:creator>djrisks</dc:creator>
      <dc:date>2015-01-15T18:13:17Z</dc:date>
    </item>
  </channel>
</rss>

