<?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 How do I get the predictive survival probability based on proc lifereg and PHREG in SAS Procedures</title>
    <link>https://communities.sas.com/t5/SAS-Procedures/How-do-I-get-the-predictive-survival-probability-based-on-proc/m-p/571679#M75307</link>
    <description>&lt;P&gt;data Headache;&lt;BR /&gt;input Minutes Group Censor @@;&lt;BR /&gt;datalines;&lt;BR /&gt;11 1 0 12 1 0 19 1 0 19 1 0&lt;BR /&gt;19 1 0 19 1 0 21 1 0 20 1 0&lt;BR /&gt;21 1 0 21 1 0 20 1 0 21 1 0&lt;BR /&gt;20 1 0 21 1 0 25 1 0 27 1 0&lt;BR /&gt;30 1 0 21 1 1 24 1 1 14 2 0&lt;BR /&gt;16 2 0 16 2 0 21 2 0 21 2 0&lt;BR /&gt;23 2 0 23 2 0 23 2 0 23 2 0&lt;BR /&gt;25 2 1 23 2 0 24 2 0 24 2 0&lt;BR /&gt;26 2 1 32 2 1 30 2 1 30 2 0&lt;BR /&gt;32 2 1 20 2 1&lt;BR /&gt;;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;proc lifereg data=Headache;&lt;BR /&gt;class Group;&lt;BR /&gt;model Minutes*Censor(1)=Group/Dist=Weibull;&lt;BR /&gt;run;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;proc phreg data=Headache;&lt;/P&gt;
&lt;P&gt;class group;&lt;/P&gt;
&lt;P&gt;model Minutes*Censor(1)=Group;&lt;BR /&gt;run;&lt;/P&gt;
&lt;P&gt;What do I need to do to have the predictive survival probability ?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Mon, 08 Jul 2019 01:59:44 GMT</pubDate>
    <dc:creator>desireatem</dc:creator>
    <dc:date>2019-07-08T01:59:44Z</dc:date>
    <item>
      <title>How do I get the predictive survival probability based on proc lifereg and PHREG</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/How-do-I-get-the-predictive-survival-probability-based-on-proc/m-p/571679#M75307</link>
      <description>&lt;P&gt;data Headache;&lt;BR /&gt;input Minutes Group Censor @@;&lt;BR /&gt;datalines;&lt;BR /&gt;11 1 0 12 1 0 19 1 0 19 1 0&lt;BR /&gt;19 1 0 19 1 0 21 1 0 20 1 0&lt;BR /&gt;21 1 0 21 1 0 20 1 0 21 1 0&lt;BR /&gt;20 1 0 21 1 0 25 1 0 27 1 0&lt;BR /&gt;30 1 0 21 1 1 24 1 1 14 2 0&lt;BR /&gt;16 2 0 16 2 0 21 2 0 21 2 0&lt;BR /&gt;23 2 0 23 2 0 23 2 0 23 2 0&lt;BR /&gt;25 2 1 23 2 0 24 2 0 24 2 0&lt;BR /&gt;26 2 1 32 2 1 30 2 1 30 2 0&lt;BR /&gt;32 2 1 20 2 1&lt;BR /&gt;;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;proc lifereg data=Headache;&lt;BR /&gt;class Group;&lt;BR /&gt;model Minutes*Censor(1)=Group/Dist=Weibull;&lt;BR /&gt;run;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;proc phreg data=Headache;&lt;/P&gt;
&lt;P&gt;class group;&lt;/P&gt;
&lt;P&gt;model Minutes*Censor(1)=Group;&lt;BR /&gt;run;&lt;/P&gt;
&lt;P&gt;What do I need to do to have the predictive survival probability ?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 08 Jul 2019 01:59:44 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/How-do-I-get-the-predictive-survival-probability-based-on-proc/m-p/571679#M75307</guid>
      <dc:creator>desireatem</dc:creator>
      <dc:date>2019-07-08T01:59:44Z</dc:date>
    </item>
    <item>
      <title>Re: How do I get the predictive survival probability based on proc lifereg and PHREG</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/How-do-I-get-the-predictive-survival-probability-based-on-proc/m-p/571684#M75308</link>
      <description>&lt;P&gt;Have you tried adding an OUTPUT statement?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Example&lt;/P&gt;
&lt;P&gt;&lt;A href="https://documentation.sas.com/?docsetId=statug&amp;amp;docsetTarget=statug_lifereg_examples02.htm&amp;amp;docsetVersion=14.3&amp;amp;locale=en" target="_blank"&gt;https://documentation.sas.com/?docsetId=statug&amp;amp;docsetTarget=statug_lifereg_examples02.htm&amp;amp;docsetVersion=14.3&amp;amp;locale=en&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Documentation for OUTPUT statement&lt;/P&gt;
&lt;P&gt;&lt;A href="https://documentation.sas.com/?docsetId=statug&amp;amp;docsetTarget=statug_lifereg_syntax10.htm&amp;amp;docsetVersion=14.3&amp;amp;locale=en" target="_blank"&gt;https://documentation.sas.com/?docsetId=statug&amp;amp;docsetTarget=statug_lifereg_syntax10.htm&amp;amp;docsetVersion=14.3&amp;amp;locale=en&lt;/A&gt;&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/40563"&gt;@desireatem&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;data Headache;&lt;BR /&gt;input Minutes Group Censor @@;&lt;BR /&gt;datalines;&lt;BR /&gt;11 1 0 12 1 0 19 1 0 19 1 0&lt;BR /&gt;19 1 0 19 1 0 21 1 0 20 1 0&lt;BR /&gt;21 1 0 21 1 0 20 1 0 21 1 0&lt;BR /&gt;20 1 0 21 1 0 25 1 0 27 1 0&lt;BR /&gt;30 1 0 21 1 1 24 1 1 14 2 0&lt;BR /&gt;16 2 0 16 2 0 21 2 0 21 2 0&lt;BR /&gt;23 2 0 23 2 0 23 2 0 23 2 0&lt;BR /&gt;25 2 1 23 2 0 24 2 0 24 2 0&lt;BR /&gt;26 2 1 32 2 1 30 2 1 30 2 0&lt;BR /&gt;32 2 1 20 2 1&lt;BR /&gt;;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;proc lifereg data=Headache;&lt;BR /&gt;class Group;&lt;BR /&gt;model Minutes*Censor(1)=Group/Dist=Weibull;&lt;BR /&gt;run;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;proc phreg data=Headache;&lt;/P&gt;
&lt;P&gt;class group;&lt;/P&gt;
&lt;P&gt;model Minutes*Censor(1)=Group;&lt;BR /&gt;run;&lt;/P&gt;
&lt;P&gt;What do I need to do to have the predictive survival probability ?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 08 Jul 2019 02:47:29 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/How-do-I-get-the-predictive-survival-probability-based-on-proc/m-p/571684#M75308</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2019-07-08T02:47:29Z</dc:date>
    </item>
    <item>
      <title>Re: How do I get the predictive survival probability based on proc lifereg and PHREG</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/How-do-I-get-the-predictive-survival-probability-based-on-proc/m-p/571689#M75309</link>
      <description>&lt;P&gt;How about for proc PHREG predictive probability.&lt;/P&gt;</description>
      <pubDate>Mon, 08 Jul 2019 03:18:00 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/How-do-I-get-the-predictive-survival-probability-based-on-proc/m-p/571689#M75309</guid>
      <dc:creator>desireatem</dc:creator>
      <dc:date>2019-07-08T03:18:00Z</dc:date>
    </item>
    <item>
      <title>Re: How do I get the predictive survival probability based on proc lifereg and PHREG</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/How-do-I-get-the-predictive-survival-probability-based-on-proc/m-p/571833#M75312</link>
      <description>Same thing, did you try that?</description>
      <pubDate>Mon, 08 Jul 2019 15:51:25 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/How-do-I-get-the-predictive-survival-probability-based-on-proc/m-p/571833#M75312</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2019-07-08T15:51:25Z</dc:date>
    </item>
    <item>
      <title>Re: How do I get the predictive survival probability based on proc lifereg and PHREG</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/How-do-I-get-the-predictive-survival-probability-based-on-proc/m-p/571837#M75313</link>
      <description>&lt;P&gt;I can get the predictive probability using proc lifereg . Now my question is how about for phreg procedure&lt;/P&gt;</description>
      <pubDate>Mon, 08 Jul 2019 15:53:32 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/How-do-I-get-the-predictive-survival-probability-based-on-proc/m-p/571837#M75313</guid>
      <dc:creator>desireatem</dc:creator>
      <dc:date>2019-07-08T15:53:32Z</dc:date>
    </item>
    <item>
      <title>Re: How do I get the predictive survival probability based on proc lifereg and PHREG</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/How-do-I-get-the-predictive-survival-probability-based-on-proc/m-p/571843#M75314</link>
      <description>Did you try adding an OUTPUT statement as well to your PROC PHREG?</description>
      <pubDate>Mon, 08 Jul 2019 16:02:28 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/How-do-I-get-the-predictive-survival-probability-based-on-proc/m-p/571843#M75314</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2019-07-08T16:02:28Z</dc:date>
    </item>
  </channel>
</rss>

