<?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: How Can I Customize Kaplan-Meier Failure Plot with proc LIFETEST? in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/How-Can-I-Customize-Kaplan-Meier-Failure-Plot-with-proc-LIFETEST/m-p/689448#M209604</link>
    <description>&lt;P&gt;Thank you, Reeza.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I added following code to template "Stat.Lifetest.Graphics.ProductLimitFailure", and I think solved.&lt;/P&gt;&lt;P&gt;DRAWRECTANGLE statement &amp;amp; DRAWTEXT statement&lt;/P&gt;&lt;P&gt;(I do not change original label "At Risk", just overlapped rectangle and comment box lol)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have no ideas where to be customized template or ATRISK option in proc LIFETEST.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Anyway, thank you!&lt;/P&gt;</description>
    <pubDate>Wed, 07 Oct 2020 05:44:34 GMT</pubDate>
    <dc:creator>KentaMURANAKA</dc:creator>
    <dc:date>2020-10-07T05:44:34Z</dc:date>
    <item>
      <title>How Can I Customize Kaplan-Meier Failure Plot with proc LIFETEST?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-Can-I-Customize-Kaplan-Meier-Failure-Plot-with-proc-LIFETEST/m-p/689407#M209581</link>
      <description>&lt;P&gt;Hello, All:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am trying to create Kaplan-Meier Failure Plot with proc LIFETEST.&lt;/P&gt;&lt;P&gt;I have 2 questions about this.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;No.1&lt;/P&gt;&lt;P&gt;Sample code is below.&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data bmt;
    set sashelp.bmt(where=(group eq "AML-Low Risk"));
run;

options nonumber nodate papersize="A4" orientation=landscape;

ods rtf style=journal;
ods graphics / noborder;
ods select failureplot;
ods noproctitle;
proc lifetest data=bmt plots=(survival(failure atrisk(maxlen=13)));
    time t*status(0);
    strata group;
    title " ";
run;
ods rtf close;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;About the output, I would like to delete 3 default titles, "The SAS System", "The LIFETEST Procedure", and "Stratum 1: Disease Group = AML-Low Risk".&lt;/P&gt;&lt;P&gt;As you see my code, I used TITLE statement &amp;amp; ODS NOPROCTITLE, and deleted two, "The SAS System", "The LIFETEST Procedure", but the last one, "Stratum 1:~" is not.&lt;/P&gt;&lt;P&gt;Do you have any ideas to delete the last one?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;No.2&lt;/P&gt;&lt;P&gt;I would like to customize default label, "At Risk", which expresses the label of # of subjects at risk.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;In order to solve these problems, I refered some papers (Kuhfeld WF, et al. -2014-, Geaty H -2015-, etc.) and tried to customize the template, "Stat.Lifetest.Graphics.ProductLimitFailure", but I have no ideas where should be changed.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you in advance.&lt;/P&gt;</description>
      <pubDate>Wed, 07 Oct 2020 01:54:17 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-Can-I-Customize-Kaplan-Meier-Failure-Plot-with-proc-LIFETEST/m-p/689407#M209581</guid>
      <dc:creator>KentaMURANAKA</dc:creator>
      <dc:date>2020-10-07T01:54:17Z</dc:date>
    </item>
    <item>
      <title>Re: How Can I Customize Kaplan-Meier Failure Plot with proc LIFETEST?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-Can-I-Customize-Kaplan-Meier-Failure-Plot-with-proc-LIFETEST/m-p/689408#M209582</link>
      <description>&lt;P&gt;About No.1 question, I deleted STRATA statement and solved. Sorry!!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I want your answers about No.2 question.&lt;/P&gt;</description>
      <pubDate>Wed, 07 Oct 2020 01:58:46 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-Can-I-Customize-Kaplan-Meier-Failure-Plot-with-proc-LIFETEST/m-p/689408#M209582</guid>
      <dc:creator>KentaMURANAKA</dc:creator>
      <dc:date>2020-10-07T01:58:46Z</dc:date>
    </item>
    <item>
      <title>Re: How Can I Customize Kaplan-Meier Failure Plot with proc LIFETEST?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-Can-I-Customize-Kaplan-Meier-Failure-Plot-with-proc-LIFETEST/m-p/689430#M209595</link>
      <description>Unfortunately I think you’re stuck modifying the templates for failure plots. &lt;BR /&gt;&lt;BR /&gt;&lt;A href="https://documentation.sas.com/?cdcId=pgmsascdc&amp;amp;cdcVersion=9.4_3.4&amp;amp;docsetId=statug&amp;amp;docsetTarget=statug_kaplan_sect015.htm&amp;amp;locale=en" target="_blank"&gt;https://documentation.sas.com/?cdcId=pgmsascdc&amp;amp;cdcVersion=9.4_3.4&amp;amp;docsetId=statug&amp;amp;docsetTarget=statug_kaplan_sect015.htm&amp;amp;locale=en&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;You can try the macros here as starters to figure out what to change. Or you could rebuild the plots from scratch and customize as desired. &lt;BR /&gt;&lt;A href="https://blogs.sas.com/content/graphicallyspeaking/2018/02/19/survival-plot-twist-using-sgplot-procedure/" target="_blank"&gt;https://blogs.sas.com/content/graphicallyspeaking/2018/02/19/survival-plot-twist-using-sgplot-procedure/&lt;/A&gt;&lt;BR /&gt;</description>
      <pubDate>Wed, 07 Oct 2020 04:07:39 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-Can-I-Customize-Kaplan-Meier-Failure-Plot-with-proc-LIFETEST/m-p/689430#M209595</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2020-10-07T04:07:39Z</dc:date>
    </item>
    <item>
      <title>Re: How Can I Customize Kaplan-Meier Failure Plot with proc LIFETEST?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-Can-I-Customize-Kaplan-Meier-Failure-Plot-with-proc-LIFETEST/m-p/689448#M209604</link>
      <description>&lt;P&gt;Thank you, Reeza.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I added following code to template "Stat.Lifetest.Graphics.ProductLimitFailure", and I think solved.&lt;/P&gt;&lt;P&gt;DRAWRECTANGLE statement &amp;amp; DRAWTEXT statement&lt;/P&gt;&lt;P&gt;(I do not change original label "At Risk", just overlapped rectangle and comment box lol)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have no ideas where to be customized template or ATRISK option in proc LIFETEST.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Anyway, thank you!&lt;/P&gt;</description>
      <pubDate>Wed, 07 Oct 2020 05:44:34 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-Can-I-Customize-Kaplan-Meier-Failure-Plot-with-proc-LIFETEST/m-p/689448#M209604</guid>
      <dc:creator>KentaMURANAKA</dc:creator>
      <dc:date>2020-10-07T05:44:34Z</dc:date>
    </item>
    <item>
      <title>Re: How Can I Customize Kaplan-Meier Failure Plot with proc LIFETEST?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-Can-I-Customize-Kaplan-Meier-Failure-Plot-with-proc-LIFETEST/m-p/689593#M209653</link>
      <description>Remember to undo the changes to your template for your next run!</description>
      <pubDate>Wed, 07 Oct 2020 15:29:53 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-Can-I-Customize-Kaplan-Meier-Failure-Plot-with-proc-LIFETEST/m-p/689593#M209653</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2020-10-07T15:29:53Z</dc:date>
    </item>
  </channel>
</rss>

