<?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 Dichotomising a continuous variable for strata in Cox regression/ Kaplan Meier survival analysis in Statistical Procedures</title>
    <link>https://communities.sas.com/t5/Statistical-Procedures/Dichotomising-a-continuous-variable-for-strata-in-Cox-regression/m-p/683408#M32866</link>
    <description>&lt;P&gt;Hi everyone,&lt;/P&gt;
&lt;P&gt;i have a dataset containing about 7000 observations, I am interested in a certain events (event), the incidence of which seems to increase with age. The increment is relatively slow at younger ages but increases more steeply with older age.&amp;nbsp;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;What I am trying to do is to find an optimal age cut off as a strata predicting the event of interest in survival analysis. Basically I am looking for the age at which the difference in hazards ratios is largest, of if you want the age cut off that separates the Kaplan Meier strata curves most.&lt;/P&gt;
&lt;P&gt;Is there a way of doing this?&lt;/P&gt;
&lt;P&gt;Thank you and appreciate your help.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Am&lt;/P&gt;</description>
    <pubDate>Sat, 12 Sep 2020 05:18:59 GMT</pubDate>
    <dc:creator>ammarhm</dc:creator>
    <dc:date>2020-09-12T05:18:59Z</dc:date>
    <item>
      <title>Dichotomising a continuous variable for strata in Cox regression/ Kaplan Meier survival analysis</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Dichotomising-a-continuous-variable-for-strata-in-Cox-regression/m-p/683408#M32866</link>
      <description>&lt;P&gt;Hi everyone,&lt;/P&gt;
&lt;P&gt;i have a dataset containing about 7000 observations, I am interested in a certain events (event), the incidence of which seems to increase with age. The increment is relatively slow at younger ages but increases more steeply with older age.&amp;nbsp;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;What I am trying to do is to find an optimal age cut off as a strata predicting the event of interest in survival analysis. Basically I am looking for the age at which the difference in hazards ratios is largest, of if you want the age cut off that separates the Kaplan Meier strata curves most.&lt;/P&gt;
&lt;P&gt;Is there a way of doing this?&lt;/P&gt;
&lt;P&gt;Thank you and appreciate your help.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Am&lt;/P&gt;</description>
      <pubDate>Sat, 12 Sep 2020 05:18:59 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Dichotomising-a-continuous-variable-for-strata-in-Cox-regression/m-p/683408#M32866</guid>
      <dc:creator>ammarhm</dc:creator>
      <dc:date>2020-09-12T05:18:59Z</dc:date>
    </item>
    <item>
      <title>Re: Dichotomising a continuous variable for strata in Cox regression/ Kaplan Meier survival analysis</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Dichotomising-a-continuous-variable-for-strata-in-Cox-regression/m-p/683465#M32874</link>
      <description>&lt;P&gt;The brute force method would be something like:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data testData;
set myData;
do cutoffAge = 25 to 55 by 5;
	strata = age &amp;gt; cutoffAge;
	output;
	end;
run;

proc sort data=testData; by cutoffAge strata; run;

proc lifetest data=testData ... ;
by cutOffAge;
strata strata;
...
ods output ... ; /* capture analysis statistics for each cutoff age*/
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;You could then choose your prefered age cutoff. Note that any such searching method will likely create a bias in favor of your hypothesis.&lt;/P&gt;</description>
      <pubDate>Sat, 12 Sep 2020 20:25:24 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Dichotomising-a-continuous-variable-for-strata-in-Cox-regression/m-p/683465#M32874</guid>
      <dc:creator>PGStats</dc:creator>
      <dc:date>2020-09-12T20:25:24Z</dc:date>
    </item>
    <item>
      <title>Re: Dichotomising a continuous variable for strata in Cox regression/ Kaplan Meier survival analysis</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Dichotomising-a-continuous-variable-for-strata-in-Cox-regression/m-p/683472#M32877</link>
      <description>Thanks &lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/462"&gt;@PGStats&lt;/a&gt;&lt;BR /&gt;Appreciate your help.&lt;BR /&gt;The issue is that the suggested solution will be based on subjective assessment of the KM graphs, I was hoping there would be an objective statistical procedure or way, maybe something similar to Youden index to solve this kind of problems?&lt;BR /&gt;Thanks once again, really appreciate your help.</description>
      <pubDate>Sat, 12 Sep 2020 22:30:59 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Dichotomising-a-continuous-variable-for-strata-in-Cox-regression/m-p/683472#M32877</guid>
      <dc:creator>ammarhm</dc:creator>
      <dc:date>2020-09-12T22:30:59Z</dc:date>
    </item>
  </channel>
</rss>

