<?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: Customizing a  PROC LIFETEST Failure Plot in Statistical Procedures</title>
    <link>https://communities.sas.com/t5/Statistical-Procedures/Customizing-a-PROC-LIFETEST-Failure-Plot/m-p/612908#M29658</link>
    <description>&lt;P&gt;&lt;A href="http://support.sas.com/documentation/onlinedoc/stat/151/kaplan.pdf" target="_blank"&gt;http://support.sas.com/documentation/onlinedoc/stat/151/kaplan.pdf&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;See page 890 for some limited help.&lt;/P&gt;</description>
    <pubDate>Thu, 19 Dec 2019 04:09:24 GMT</pubDate>
    <dc:creator>WarrenKuhfeld</dc:creator>
    <dc:date>2019-12-19T04:09:24Z</dc:date>
    <item>
      <title>Customizing a  PROC LIFETEST Failure Plot</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Customizing-a-PROC-LIFETEST-Failure-Plot/m-p/612883#M29655</link>
      <description>&lt;P&gt;I've used SAS macros %ProvideSurvivalMacros and %CompileSurvivalTemplates in the past to customize the plot that PROC LIFETEST generates.&amp;nbsp; Now I'm generating a Failure plot with LIFETEST, and I found that these macros have no effect.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;When I looked at the macro code I realized that this is because they are modifying the survival plot template.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Is there a corresponding macro(s) that I can use to modify a failure plot template?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Just for the record, here is my LIFETEST code.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;ods rtf file="&amp;amp;ProjDir\QC\qc doc\tlfs\QC_&amp;amp;prog..rtf" nogtitle nogfootnote bodytitle;
 
ods graphics on;

ods select failureplot;
    
proc lifetest data = prep plots=survival (cb=hw failure test atrisk (maxlen=13));
     where newgroup = 1;
     strata newgroup;
     time AVAL*CNSR(1);
     run;
   
ods graphics off;
 
ods rtf close;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;...dave&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt; 
 &lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 19 Dec 2019 00:26:35 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Customizing-a-PROC-LIFETEST-Failure-Plot/m-p/612883#M29655</guid>
      <dc:creator>daveconifer1</dc:creator>
      <dc:date>2019-12-19T00:26:35Z</dc:date>
    </item>
    <item>
      <title>Re: Customizing a  PROC LIFETEST Failure Plot</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Customizing-a-PROC-LIFETEST-Failure-Plot/m-p/612907#M29657</link>
      <description>&lt;P&gt;Right. They affect the survival plot and not the failure plot.&amp;nbsp; I only provided macros for the survival plot, since that seemed to be the bigger need. At the time I did this, providing templates in *any* form beyond the proc template source form was controversial, so I was limited as to what I could do. It does seem that I wrote something somewhere about the failure plot.&amp;nbsp; I will see if I can find it.&lt;/P&gt;</description>
      <pubDate>Thu, 19 Dec 2019 04:06:38 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Customizing-a-PROC-LIFETEST-Failure-Plot/m-p/612907#M29657</guid>
      <dc:creator>WarrenKuhfeld</dc:creator>
      <dc:date>2019-12-19T04:06:38Z</dc:date>
    </item>
    <item>
      <title>Re: Customizing a  PROC LIFETEST Failure Plot</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Customizing-a-PROC-LIFETEST-Failure-Plot/m-p/612908#M29658</link>
      <description>&lt;P&gt;&lt;A href="http://support.sas.com/documentation/onlinedoc/stat/151/kaplan.pdf" target="_blank"&gt;http://support.sas.com/documentation/onlinedoc/stat/151/kaplan.pdf&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;See page 890 for some limited help.&lt;/P&gt;</description>
      <pubDate>Thu, 19 Dec 2019 04:09:24 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Customizing-a-PROC-LIFETEST-Failure-Plot/m-p/612908#M29658</guid>
      <dc:creator>WarrenKuhfeld</dc:creator>
      <dc:date>2019-12-19T04:09:24Z</dc:date>
    </item>
    <item>
      <title>Re: Customizing a  PROC LIFETEST Failure Plot</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Customizing-a-PROC-LIFETEST-Failure-Plot/m-p/612990#M29659</link>
      <description>&lt;P&gt;Hi Warren,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks so much.&amp;nbsp; I was actually looking at your instructions overnight for modifying a failure plot.&amp;nbsp; I was just coming back here to mention that there are no SAS macros for the failure plot, only survival.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks again.&amp;nbsp; You've helped me in the past with the survival plot customization, as did all you well-written documentation!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;...dave&lt;/P&gt;</description>
      <pubDate>Thu, 19 Dec 2019 11:23:52 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Customizing-a-PROC-LIFETEST-Failure-Plot/m-p/612990#M29659</guid>
      <dc:creator>daveconifer1</dc:creator>
      <dc:date>2019-12-19T11:23:52Z</dc:date>
    </item>
  </channel>
</rss>

