<?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 to do survival analysis with very few events? in Statistical Procedures</title>
    <link>https://communities.sas.com/t5/Statistical-Procedures/how-to-do-survival-analysis-with-very-few-events/m-p/567705#M27942</link>
    <description>&lt;P&gt;I suppose the easiest way is to excluder the strata that do not have any events.&lt;/P&gt;
&lt;P&gt;First run PROC FREQ:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc freq data=adsl2;
tables TRT01PN * cnsr / norow nocol nopercent;
run;
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Then look at the frequency table and find all the strata for which all entries are censored.&lt;/P&gt;
&lt;P&gt;Then exclude those strata. For example, if the strata TRT01PN='A' does not have any events, then put&lt;/P&gt;
&lt;P&gt;WHERE&amp;nbsp;TRT01PN not in ('A');&lt;/P&gt;
&lt;P&gt;into the procedure. If more than one strata does not have events, use&lt;/P&gt;
&lt;P&gt;WHERE&amp;nbsp;TRT01PN not in ('A', 'C', 'Z');&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Thu, 20 Jun 2019 16:33:17 GMT</pubDate>
    <dc:creator>Rick_SAS</dc:creator>
    <dc:date>2019-06-20T16:33:17Z</dc:date>
    <item>
      <title>how to do survival analysis with very few events?</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/how-to-do-survival-analysis-with-very-few-events/m-p/567646#M27940</link>
      <description>&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt; PROC LIFETEST data= adsl2 alphaqt=0.05 alpha=0.05 method=km outsurv=km_outsurv1 ;
     TIME aval * cnsr (1);
     STRATA   TRT01PN;
     ODS OUTPUT ProductLimitEstimates=kme_sd1;
 RUN;
ods listing;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;got warning like this:&lt;/P&gt;
&lt;P&gt;WARNING: The likelihood ratio test for strata homogeneity is questionable since some strata have no events.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;In this case, is there a way to opt out the LRT? or is there a preferred way to handle this?&lt;/P&gt;</description>
      <pubDate>Thu, 20 Jun 2019 15:01:27 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/how-to-do-survival-analysis-with-very-few-events/m-p/567646#M27940</guid>
      <dc:creator>fengyuwuzu</dc:creator>
      <dc:date>2019-06-20T15:01:27Z</dc:date>
    </item>
    <item>
      <title>Re: how to do survival analysis with very few events?</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/how-to-do-survival-analysis-with-very-few-events/m-p/567705#M27942</link>
      <description>&lt;P&gt;I suppose the easiest way is to excluder the strata that do not have any events.&lt;/P&gt;
&lt;P&gt;First run PROC FREQ:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc freq data=adsl2;
tables TRT01PN * cnsr / norow nocol nopercent;
run;
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Then look at the frequency table and find all the strata for which all entries are censored.&lt;/P&gt;
&lt;P&gt;Then exclude those strata. For example, if the strata TRT01PN='A' does not have any events, then put&lt;/P&gt;
&lt;P&gt;WHERE&amp;nbsp;TRT01PN not in ('A');&lt;/P&gt;
&lt;P&gt;into the procedure. If more than one strata does not have events, use&lt;/P&gt;
&lt;P&gt;WHERE&amp;nbsp;TRT01PN not in ('A', 'C', 'Z');&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 20 Jun 2019 16:33:17 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/how-to-do-survival-analysis-with-very-few-events/m-p/567705#M27942</guid>
      <dc:creator>Rick_SAS</dc:creator>
      <dc:date>2019-06-20T16:33:17Z</dc:date>
    </item>
    <item>
      <title>Re: how to do survival analysis with very few events?</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/how-to-do-survival-analysis-with-very-few-events/m-p/567721#M27943</link>
      <description>&lt;P&gt;Thank you Rick. Indeed one of the 3 arms has no event under the subgroup selection.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 20 Jun 2019 18:14:09 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/how-to-do-survival-analysis-with-very-few-events/m-p/567721#M27943</guid>
      <dc:creator>fengyuwuzu</dc:creator>
      <dc:date>2019-06-20T18:14:09Z</dc:date>
    </item>
  </channel>
</rss>

