<?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: Cox proportional hazards assumption validation in Statistical Procedures</title>
    <link>https://communities.sas.com/t5/Statistical-Procedures/Cox-proportional-hazards-assumption-validation/m-p/386765#M20140</link>
    <description>&lt;P&gt;Unfortunately, it's not an exact science to determine&amp;nbsp;if the PH assumption is violated. You have to make the call, especially knowing the KM curves cross for gender. One thing to consider is the p-value itself, if it's 0.0546, which is greater than 0.05 but close maybe it's still ok. It's a judgement call....&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Another option is the ASSESS statement. I would suggest searching on Lexjansen.com to see how to use the ASSESS statement and then using that as another check.&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Wed, 09 Aug 2017 18:55:21 GMT</pubDate>
    <dc:creator>Reeza</dc:creator>
    <dc:date>2017-08-09T18:55:21Z</dc:date>
    <item>
      <title>Cox proportional hazards assumption validation</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Cox-proportional-hazards-assumption-validation/m-p/386639#M20116</link>
      <description>&lt;P&gt;I'm trying to check that the proportional hazards assumption is satisfied with all my variables in my Cox model.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I used 2 methods to do this, but they give different results.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;First method:&lt;/P&gt;&lt;P&gt;Add time-dependent variable to the original model (in this case, a product of a variable of interest and logarithm of time variable was added for each covariate).&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;prog phreg data=data covsandwich;&lt;BR /&gt;
class drinker meds;&lt;BR /&gt;
model time*event(0)=drinker meds comorbs age avg_glucose avg_creatinine &lt;BR /&gt;t_drinker t_meds t_comorbs t_age t_avg_glucose t_avg_creatinine;&lt;BR /&gt;
t_drinker=drinker*log(time);
t_meds=meds*log(time);
t_comorbs=comorbs*log(time);
t_age=age*log(time);
t_avg_glucose=avg_glucose*log(time);
t_avg_creatinine=avg_creatinine*log(time);&lt;BR /&gt;
id pracid;&lt;BR /&gt;
run;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;SPAN&gt;This method showed that proportional hazards assumption was satisfied for all variables because none of these time-dependent variables were significant.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Second method:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;for continuous variables - plots of Shoenfeld residuals against&amp;nbsp;the time variable&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;for categorical variables - plots of&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;EM&gt;log&lt;/EM&gt;&lt;SPAN&gt;-&lt;/SPAN&gt;&lt;EM&gt;minus&lt;/EM&gt;&lt;SPAN&gt;-&lt;/SPAN&gt;&lt;EM&gt;log&lt;/EM&gt;&lt;SPAN&gt;&amp;nbsp;of the survival function against the time variable, stratified by the category levels.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;e.g.&lt;/SPAN&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc lifetest data=data plots=(s, lls);
time time*event(0);
strata drinker;
run;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;This method showed that all the continous variables satisfied the proportional hazards assumption (graghs showed straight line), whilst it did not for one of the categorical variable (drinker) as the lines of the survival function crossed.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;The first method and second method showed slightly different results (all covariates satisfy the PHA in the first, whilst it doesn't for the second). Could this be because the second analysis is unadjusted? I wonder whether it's fair to conclude that the PH assumption is satisfied as indicated by the first method, or whether it isn't because of the second method.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Many thanks for your help in advance.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 09 Aug 2017 14:01:55 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Cox-proportional-hazards-assumption-validation/m-p/386639#M20116</guid>
      <dc:creator>Dani08</dc:creator>
      <dc:date>2017-08-09T14:01:55Z</dc:date>
    </item>
    <item>
      <title>Re: Cox proportional hazards assumption validation</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Cox-proportional-hazards-assumption-validation/m-p/386642#M20117</link>
      <description>&lt;P&gt;In the first you're testing all assumptions at once. In the second you're testing each independently.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 09 Aug 2017 14:07:42 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Cox-proportional-hazards-assumption-validation/m-p/386642#M20117</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2017-08-09T14:07:42Z</dc:date>
    </item>
    <item>
      <title>Re: Cox proportional hazards assumption validation</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Cox-proportional-hazards-assumption-validation/m-p/386650#M20118</link>
      <description>Thanks for your reply, so would you say it is safe to say that the proportional hazards assumption is satisfied according to the first method?</description>
      <pubDate>Wed, 09 Aug 2017 14:19:27 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Cox-proportional-hazards-assumption-validation/m-p/386650#M20118</guid>
      <dc:creator>Dani08</dc:creator>
      <dc:date>2017-08-09T14:19:27Z</dc:date>
    </item>
    <item>
      <title>Re: Cox proportional hazards assumption validation</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Cox-proportional-hazards-assumption-validation/m-p/386765#M20140</link>
      <description>&lt;P&gt;Unfortunately, it's not an exact science to determine&amp;nbsp;if the PH assumption is violated. You have to make the call, especially knowing the KM curves cross for gender. One thing to consider is the p-value itself, if it's 0.0546, which is greater than 0.05 but close maybe it's still ok. It's a judgement call....&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Another option is the ASSESS statement. I would suggest searching on Lexjansen.com to see how to use the ASSESS statement and then using that as another check.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 09 Aug 2017 18:55:21 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Cox-proportional-hazards-assumption-validation/m-p/386765#M20140</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2017-08-09T18:55:21Z</dc:date>
    </item>
    <item>
      <title>Re: Cox proportional hazards assumption validation</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Cox-proportional-hazards-assumption-validation/m-p/386913#M20147</link>
      <description>Thank you for your advice, will try the assess statement too.</description>
      <pubDate>Thu, 10 Aug 2017 09:31:51 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Cox-proportional-hazards-assumption-validation/m-p/386913#M20147</guid>
      <dc:creator>Dani08</dc:creator>
      <dc:date>2017-08-10T09:31:51Z</dc:date>
    </item>
    <item>
      <title>Re: Cox proportional hazards assumption validation</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Cox-proportional-hazards-assumption-validation/m-p/386945#M20149</link>
      <description>&lt;P&gt;You have proportional hazards if the difference of Log(-Log(kaplanmeier)) between the two groups under consideration is constant.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Not crossing&amp;nbsp;Kaplan Meier curves&amp;nbsp;does not&amp;nbsp;imply proportional hazard rates. This just imply that one group has&amp;nbsp;a higher risk&amp;nbsp;than the other.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 10 Aug 2017 10:52:28 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Cox-proportional-hazards-assumption-validation/m-p/386945#M20149</guid>
      <dc:creator>JacobSimonsen</dc:creator>
      <dc:date>2017-08-10T10:52:28Z</dc:date>
    </item>
  </channel>
</rss>

