<?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 PHREG in Statistical Procedures</title>
    <link>https://communities.sas.com/t5/Statistical-Procedures/PHREG/m-p/138637#M7231</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;in PROC PHREG, is it possible to obtain a&amp;nbsp; "failure" plot instead of a survival plot?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;for example, below will produce an adjusted survival curve. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;proc phreg data=x&amp;nbsp;&amp;nbsp;&amp;nbsp; plots(overlay)=s;&lt;/P&gt;&lt;P&gt;&amp;nbsp; class trt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; model;&lt;/P&gt;&lt;P&gt;&amp;nbsp; baseline covariates=x&amp;nbsp; out=y SURVIVAL=Survival&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; /diradj group=trt;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;what I'm interested in is a failure curve to show cumulative probability of failure&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In PROC LIFETEST when can request to change the default survival to failure curve. Is this available in PHREG?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;proc lifetest data=x&amp;nbsp; plot=(survival ( failure));&lt;/P&gt;&lt;P&gt;..&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 10 Mar 2014 17:18:41 GMT</pubDate>
    <dc:creator>Altal</dc:creator>
    <dc:date>2014-03-10T17:18:41Z</dc:date>
    <item>
      <title>PHREG</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/PHREG/m-p/138637#M7231</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;in PROC PHREG, is it possible to obtain a&amp;nbsp; "failure" plot instead of a survival plot?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;for example, below will produce an adjusted survival curve. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;proc phreg data=x&amp;nbsp;&amp;nbsp;&amp;nbsp; plots(overlay)=s;&lt;/P&gt;&lt;P&gt;&amp;nbsp; class trt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; model;&lt;/P&gt;&lt;P&gt;&amp;nbsp; baseline covariates=x&amp;nbsp; out=y SURVIVAL=Survival&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; /diradj group=trt;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;what I'm interested in is a failure curve to show cumulative probability of failure&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In PROC LIFETEST when can request to change the default survival to failure curve. Is this available in PHREG?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;proc lifetest data=x&amp;nbsp; plot=(survival ( failure));&lt;/P&gt;&lt;P&gt;..&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 10 Mar 2014 17:18:41 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/PHREG/m-p/138637#M7231</guid>
      <dc:creator>Altal</dc:creator>
      <dc:date>2014-03-10T17:18:41Z</dc:date>
    </item>
    <item>
      <title>Re: PHREG</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/PHREG/m-p/138638#M7232</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;No, the probability plot of failure is not possible to obtain directly from phreg - not as far as I know.&lt;/P&gt;&lt;P&gt;But, it is not more difficult to obtain than to calculate 1-survivalprobability.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data y;&lt;/P&gt;&lt;P&gt;&amp;nbsp; set y;&lt;/P&gt;&lt;P&gt;prob_of_failure=1-survival;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Jacob&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 10 Mar 2014 17:23:29 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/PHREG/m-p/138638#M7232</guid>
      <dc:creator>JacobSimonsen</dc:creator>
      <dc:date>2014-03-10T17:23:29Z</dc:date>
    </item>
    <item>
      <title>Re: PHREG</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/PHREG/m-p/138639#M7233</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for response. I couldn't get it to work using any of the proc options. However, I was able to manipulate the template for the survival plot (Stat.Phreg.Graphics.Survival), and specifying (y=eval(1-SURVIVAL) ) in the seriesplot statement.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 11 Mar 2014 12:18:28 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/PHREG/m-p/138639#M7233</guid>
      <dc:creator>Altal</dc:creator>
      <dc:date>2014-03-11T12:18:28Z</dc:date>
    </item>
    <item>
      <title>Re: PHREG</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/PHREG/m-p/245882#M12967</link>
      <description>JacobSimonsen is correct.  You can post-process the BASELINE data set to compute failure = 1 - survival and then plot failure versus time with PROC SGPLOT (for an ODS Graphics type plot) or PROC GPLOT (for a traditional graphics type plot).</description>
      <pubDate>Mon, 25 Jan 2016 14:32:38 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/PHREG/m-p/245882#M12967</guid>
      <dc:creator>OsoGris</dc:creator>
      <dc:date>2016-01-25T14:32:38Z</dc:date>
    </item>
    <item>
      <title>Re: PHREG</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/PHREG/m-p/245883#M12968</link>
      <description>That is a good solution for those comfortable with modifying the underlying ODS Graphics template for the SurvivalPlot.</description>
      <pubDate>Mon, 25 Jan 2016 14:33:55 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/PHREG/m-p/245883#M12968</guid>
      <dc:creator>OsoGris</dc:creator>
      <dc:date>2016-01-25T14:33:55Z</dc:date>
    </item>
  </channel>
</rss>

