<?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: timelist created by proc lifetest is different from the actually followup days? in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/timelist-created-by-proc-lifetest-is-different-from-the-actually/m-p/925079#M364090</link>
    <description>&lt;P&gt;As Freelance said there are not K-M estimator between "&lt;SPAN&gt;timelist and the day".&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Your original code could you right result.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Ksharp_0-1713593469556.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/95709iCF86A3C5012D64BF/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Ksharp_0-1713593469556.png" alt="Ksharp_0-1713593469556.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Sat, 20 Apr 2024 06:11:28 GMT</pubDate>
    <dc:creator>Ksharp</dc:creator>
    <dc:date>2024-04-20T06:11:28Z</dc:date>
    <item>
      <title>timelist created by proc lifetest is different from the actually followup days?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/timelist-created-by-proc-lifetest-is-different-from-the-actually/m-p/925048#M364082</link>
      <description>&lt;P&gt;I want to find a KM rate at 90 days. so I used&lt;/P&gt;
&lt;P&gt;proc lifetest data=testdata timlist=90;&lt;BR /&gt;time day*censor(0);&lt;BR /&gt;strata group;&lt;BR /&gt;run;&lt;/P&gt;
&lt;P&gt;However, I found the timelist and the day are different. Could you help me figure out why there is a gap between these two? If I do really want to find the km rate at day 90, how to set up the options of proc lifetest?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Many thanks!&lt;/P&gt;</description>
      <pubDate>Fri, 19 Apr 2024 17:56:59 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/timelist-created-by-proc-lifetest-is-different-from-the-actually/m-p/925048#M364082</guid>
      <dc:creator>SeaMoon_168</dc:creator>
      <dc:date>2024-04-19T17:56:59Z</dc:date>
    </item>
    <item>
      <title>Re: timelist created by proc lifetest is different from the actually followup days?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/timelist-created-by-proc-lifetest-is-different-from-the-actually/m-p/925059#M364084</link>
      <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/382088"&gt;@SeaMoon_168&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If a value &lt;EM&gt;T&lt;/EM&gt; in the TIMELIST= option is not one of the &lt;EM&gt;observed&lt;/EM&gt; survival times, the second column ("&lt;FONT face="courier new,courier"&gt;day&lt;/FONT&gt;" in your example) will contain the &lt;EM&gt;most recent event time&amp;nbsp;before&lt;/EM&gt; &lt;EM&gt;T&lt;/EM&gt;&amp;nbsp;in the same stratum (&lt;EM&gt;group&lt;/EM&gt; in your example) -- or zero if there is none. The values in columns "&lt;FONT face="courier new,courier"&gt;Survival&lt;/FONT&gt;", "&lt;FONT face="courier new,courier"&gt;Failure&lt;/FONT&gt;" and "&lt;FONT face="courier new,courier"&gt;Survival Standard Error&lt;/FONT&gt;" correspond to that most recent event time, whereas the values&amp;nbsp;in columns "&lt;FONT face="courier new,courier"&gt;Number Failed&lt;/FONT&gt;"&amp;nbsp;and "&lt;FONT face="courier new,courier"&gt;Number Left&lt;/FONT&gt;" correspond to the most recent &lt;EM&gt;survival time&lt;/EM&gt;&amp;nbsp;before &lt;EM&gt;T&lt;/EM&gt;&amp;nbsp;(again, in the same stratum), which includes censored survival times, if any.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/382088"&gt;@SeaMoon_168&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;If I do really want to find the km rate at day 90, how to set up the options of proc lifetest?&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;You&amp;nbsp;get the correct Kaplan-Meier estimate with this option because of the definition of the Kaplan-Meier estimator as a step function.&lt;/P&gt;</description>
      <pubDate>Fri, 19 Apr 2024 19:30:25 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/timelist-created-by-proc-lifetest-is-different-from-the-actually/m-p/925059#M364084</guid>
      <dc:creator>FreelanceReinh</dc:creator>
      <dc:date>2024-04-19T19:30:25Z</dc:date>
    </item>
    <item>
      <title>Re: timelist created by proc lifetest is different from the actually followup days?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/timelist-created-by-proc-lifetest-is-different-from-the-actually/m-p/925079#M364090</link>
      <description>&lt;P&gt;As Freelance said there are not K-M estimator between "&lt;SPAN&gt;timelist and the day".&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Your original code could you right result.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Ksharp_0-1713593469556.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/95709iCF86A3C5012D64BF/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Ksharp_0-1713593469556.png" alt="Ksharp_0-1713593469556.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 20 Apr 2024 06:11:28 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/timelist-created-by-proc-lifetest-is-different-from-the-actually/m-p/925079#M364090</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2024-04-20T06:11:28Z</dc:date>
    </item>
  </channel>
</rss>

