<?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: SAS Phreg with time dependent covariate in Statistical Procedures</title>
    <link>https://communities.sas.com/t5/Statistical-Procedures/SAS-Phreg-with-time-dependent-covariate/m-p/890908#M44145</link>
    <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/209123"&gt;@sasstats&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;First, note that the hazard ratio 0.935 for XStatus resulted from the model&lt;/P&gt;
&lt;PRE&gt;model Time*Status(0)= &lt;STRONG&gt;XStatus Acc_Age&lt;/STRONG&gt;;&lt;/PRE&gt;
&lt;P&gt;The corresponding p-value 0.8261 indicates that the true hazard ratio might well be 1&amp;nbsp; (i.e., no difference in hazard rates due to XStatus; see the 95% confidence interval [0.513, 1.703]).&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;But let's assume that the model accurately describes the population, so the hazard ratio is "real." Then we would conclude that a patient with XStatus=1 (i.e., who has received a transplant) is slightly less likely to die (by a factor 0.935) than a patient&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;of the same Acc_Age&lt;/LI&gt;
&lt;LI&gt;who has not received a transplant yet (XStatus=0)&lt;/LI&gt;
&lt;LI&gt;in the corresponding time interval (with that hazard ratio being effective, in particular: before the second patient receives their transplant).&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;Or in other words: Comparing two sufficiently and equally large subpopulations "XStatus=0" vs. "XStatus=1" with the same distribution of variable Acc_Age, we might see 1000 deaths in the first group within a certain period of time and would expect only about 935 deaths in the parallel group of&amp;nbsp;&lt;SPAN&gt;transplant recipients.&lt;/SPAN&gt;&lt;/P&gt;</description>
    <pubDate>Thu, 24 Aug 2023 20:53:37 GMT</pubDate>
    <dc:creator>FreelanceReinh</dc:creator>
    <dc:date>2023-08-24T20:53:37Z</dc:date>
    <item>
      <title>SAS Phreg with time dependent covariate</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/SAS-Phreg-with-time-dependent-covariate/m-p/890566#M44131</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;we have a question concerning the interpretation of the hazard ratio of a time dependent covariate.&lt;/P&gt;&lt;P&gt;We used the syntax of the following example of SAS&lt;/P&gt;&lt;P&gt;&lt;A href="https://support.sas.com/documentation/cdl/en/statug/63962/HTML/default/viewer.htm#statug_phreg_sect051.htm" target="_blank" rel="noopener"&gt;PROC PHREG: Model Using Time-Dependent Explanatory Variables :: SAS/STAT(R) 9.3 User's Guide&lt;/A&gt;&lt;/P&gt;&lt;P&gt;time = survival time, Status=1=death, Waittime = Waiting time until transplantation&amp;nbsp;&lt;/P&gt;&lt;PRE class=""&gt;proc phreg data= Heart;
   model Time*Status(0)= XStatus XAge XScore;
   where NotTyped ^= 'y';
   if (WaitTime = . or Time &amp;lt; WaitTime) then do;
      XStatus=0.;
      XAge=0.;
      XScore= 0.;
   end;
   else do;
      XStatus= 1.0;
      XAge= Xpl_Age;
      XScore= Mismatch;
   end;
run;&lt;/PRE&gt;&lt;P&gt;The hazard ration for xstatus is equal&amp;nbsp;&lt;SPAN&gt;0.935.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;What does this mean in case of time dependency?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Does is it mean that the risk to die is lower (-6.5%) in case of status gets one, i.e. the patients gets a transplant where the time dependence is taken into account ?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Best regards,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;statstats&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 23 Aug 2023 14:04:13 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/SAS-Phreg-with-time-dependent-covariate/m-p/890566#M44131</guid>
      <dc:creator>sasstats</dc:creator>
      <dc:date>2023-08-23T14:04:13Z</dc:date>
    </item>
    <item>
      <title>Re: SAS Phreg with time dependent covariate</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/SAS-Phreg-with-time-dependent-covariate/m-p/890908#M44145</link>
      <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/209123"&gt;@sasstats&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;First, note that the hazard ratio 0.935 for XStatus resulted from the model&lt;/P&gt;
&lt;PRE&gt;model Time*Status(0)= &lt;STRONG&gt;XStatus Acc_Age&lt;/STRONG&gt;;&lt;/PRE&gt;
&lt;P&gt;The corresponding p-value 0.8261 indicates that the true hazard ratio might well be 1&amp;nbsp; (i.e., no difference in hazard rates due to XStatus; see the 95% confidence interval [0.513, 1.703]).&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;But let's assume that the model accurately describes the population, so the hazard ratio is "real." Then we would conclude that a patient with XStatus=1 (i.e., who has received a transplant) is slightly less likely to die (by a factor 0.935) than a patient&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;of the same Acc_Age&lt;/LI&gt;
&lt;LI&gt;who has not received a transplant yet (XStatus=0)&lt;/LI&gt;
&lt;LI&gt;in the corresponding time interval (with that hazard ratio being effective, in particular: before the second patient receives their transplant).&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;Or in other words: Comparing two sufficiently and equally large subpopulations "XStatus=0" vs. "XStatus=1" with the same distribution of variable Acc_Age, we might see 1000 deaths in the first group within a certain period of time and would expect only about 935 deaths in the parallel group of&amp;nbsp;&lt;SPAN&gt;transplant recipients.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 24 Aug 2023 20:53:37 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/SAS-Phreg-with-time-dependent-covariate/m-p/890908#M44145</guid>
      <dc:creator>FreelanceReinh</dc:creator>
      <dc:date>2023-08-24T20:53:37Z</dc:date>
    </item>
  </channel>
</rss>

