<?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: Plot of Hazard Ratio against a Continuous Predictor in SAS Procedures</title>
    <link>https://communities.sas.com/t5/SAS-Procedures/Plot-of-Hazard-Ratio-against-a-Continuous-Predictor/m-p/620545#M77175</link>
    <description>&lt;P&gt;The message&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;WARNING: The EFFECTPLOT statement cannot be used for the specified model.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;means that the EFFECTPLOT statement does not support the PHREG model. Create &lt;A href="https://go.documentation.sas.com/?docsetId=statug&amp;amp;docsetTarget=statug_phreg_details130.htm&amp;amp;docsetVersion=15.1&amp;amp;locale=en#statug.phreg.phrdetbaselineout" target="_self"&gt;an output data set from PHREG&lt;/A&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;and use PROC SGPLOT to create the graph you want.&lt;/SPAN&gt;&lt;/P&gt;</description>
    <pubDate>Tue, 28 Jan 2020 15:45:19 GMT</pubDate>
    <dc:creator>Rick_SAS</dc:creator>
    <dc:date>2020-01-28T15:45:19Z</dc:date>
    <item>
      <title>Plot of Hazard Ratio against a Continuous Predictor</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Plot-of-Hazard-Ratio-against-a-Continuous-Predictor/m-p/620201#M77144</link>
      <description>&lt;P&gt;I want to plot hazard ratio against time to treatment. As a first step, I wanted to replicate the procedure that plots survival probability against time to treatment, in the post&amp;nbsp;&lt;A href="https://communities.sas.com/t5/SAS-Procedures/Output-covariates-from-proc-phreg-not-working/m-p/272824/highlight/true#M58391" target="_blank"&gt;https://communities.sas.com/t5/SAS-Procedures/Output-covariates-from-proc-phreg-not-working/m-p/272824/highlight/true#M58391&lt;/A&gt;, but I am getting the following message and am not able to plot the survival probability against time to treatment.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;73&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;74&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; proc phreg data = all_os;&lt;/P&gt;&lt;P&gt;&amp;nbsp;75&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; class&amp;nbsp; gender_m (ref='1') /* bmi_cat (ref='2') rgn (ref='1') stg_grp&amp;nbsp; (ref='1') cci_grp (ref = '1') */;&lt;/P&gt;&lt;P&gt;&amp;nbsp;76&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; model os*os_censor(0)=time_to_trtmt gender_m /*age_index&amp;nbsp; rgn bmi_cat&amp;nbsp; stg_grp cci_grp */ / RISKLIMITS=PL ;&lt;/P&gt;&lt;P&gt;&amp;nbsp;77&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; *&amp;nbsp;&amp;nbsp; model os*os_censor(0) = time_to_trtmt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;78&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; store out = out_tti_survival;&lt;/P&gt;&lt;P&gt;&amp;nbsp;79&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; run;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;NOTE: Convergence criterion (GCONV=1E-8) satisfied.&lt;/P&gt;&lt;P&gt;&amp;nbsp;NOTE: The PHREG procedure generated the model item store WORK.OUT_TTI_SURVIVAL.&lt;/P&gt;&lt;P&gt;&amp;nbsp;NOTE: PROCEDURE PHREG used (Total process time):&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; real time&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 0.17 seconds&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; cpu time&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 0.17 seconds&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;80&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;81&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ods graphics on;&lt;/P&gt;&lt;P&gt;&amp;nbsp;82&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; proc plm restore = out_tti_survival;&lt;/P&gt;&lt;P&gt;&amp;nbsp;83&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; effectplot slicefit (x = time_to_trtmt sliceby = gender_m) ;&lt;/P&gt;&lt;P&gt;&amp;nbsp;84&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ods graphics off;&lt;/P&gt;&lt;P&gt;&amp;nbsp;85&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; run;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;WARNING: The EFFECTPLOT statement cannot be used for the specified model.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;NOTE: PROCEDURE PLM used (Total process time):&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; real time&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 0.02 seconds&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; cpu time&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 0.03 seconds&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am using SAS Studio &lt;STRONG&gt;&lt;FONT color="#020202"&gt;Release: 3.8 (Basic Edition) and&amp;nbsp;&lt;FONT color="#020202" size="3"&gt;SAS release:&lt;/FONT&gt;&lt;SPAN style="display: inline !important; float: none; background-color: transparent; color: #020202; font-family: AvenirNext,Helvetica,Arial,sans-serif; font-size: 14.06px; font-style: normal; font-variant: normal; font-weight: bold; letter-spacing: normal; orphans: 2; text-align: left; text-decoration: none; text-indent: 0px; text-transform: none; -webkit-text-stroke-width: 0px; white-space: normal; word-spacing: 0px;"&gt; 9.04.01M6P11072018&lt;/SPAN&gt;.&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;As a next step, I want to plot the hazard ratio against time to treatment.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Finally, I want to be able to use Recursive Partitioning Analysis (RPA) to get a plot similar to the attached one. This plot is from Kompelli AR, LI H, Neskey DM. Impact of Delay in Treatment Initiation on Overall Survival in Laryngeal Cancers. Otolaryngology–Head and Neck Surgery 2019, Vol. 160(4) 651–657.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 27 Jan 2020 15:46:56 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Plot-of-Hazard-Ratio-against-a-Continuous-Predictor/m-p/620201#M77144</guid>
      <dc:creator>SriniR</dc:creator>
      <dc:date>2020-01-27T15:46:56Z</dc:date>
    </item>
    <item>
      <title>Re: Plot of Hazard Ratio against a Continuous Predictor</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Plot-of-Hazard-Ratio-against-a-Continuous-Predictor/m-p/620211#M77146</link>
      <description>Isn't the assumption for cox regression that the hazardratio is constant over time? Do you have a time dependent variable in your model?</description>
      <pubDate>Mon, 27 Jan 2020 16:11:02 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Plot-of-Hazard-Ratio-against-a-Continuous-Predictor/m-p/620211#M77146</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2020-01-27T16:11:02Z</dc:date>
    </item>
    <item>
      <title>Re: Plot of Hazard Ratio against a Continuous Predictor</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Plot-of-Hazard-Ratio-against-a-Continuous-Predictor/m-p/620214#M77147</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13879"&gt;@Reeza&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;Isn't the assumption for cox regression that the hazardratio is constant over time? Do you have a time dependent variable in your model?&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;&lt;SPAN style="display: inline !important; float: none; background-color: transparent; color: #333333; cursor: text; font-family: 'HelevticaNeue-light','Helvetica Neue',Helvetica,Arial,sans-serif; font-size: 14px; font-style: normal; font-variant: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: left; text-decoration: none; text-indent: 0px; text-transform: none; -webkit-text-stroke-width: 0px; white-space: normal; word-spacing: 0px;"&gt;Please see the article&amp;nbsp;&lt;A href="http://support.sas.com/resources/papers/proceedings09/236-2009.pdf" target="_blank"&gt;http://support.sas.com/resources/papers/proceedings09/236-2009.pdf&lt;/A&gt; which is given in the post for which I have provided the link. As Rick has suggested in that post, I tried to use PROC PLM which does not seem to work.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 27 Jan 2020 16:23:02 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Plot-of-Hazard-Ratio-against-a-Continuous-Predictor/m-p/620214#M77147</guid>
      <dc:creator>SriniR</dc:creator>
      <dc:date>2020-01-27T16:23:02Z</dc:date>
    </item>
    <item>
      <title>Re: Plot of Hazard Ratio against a Continuous Predictor</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Plot-of-Hazard-Ratio-against-a-Continuous-Predictor/m-p/620216#M77148</link>
      <description>Survival is not the same as the hazardratio, so are you asking for the predicted survival or the hazardratio? Your question seems to consider them the same thing which isn't correct AFAIK. &lt;BR /&gt;&lt;BR /&gt;Assuming you're looking at</description>
      <pubDate>Mon, 27 Jan 2020 16:29:19 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Plot-of-Hazard-Ratio-against-a-Continuous-Predictor/m-p/620216#M77148</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2020-01-27T16:29:19Z</dc:date>
    </item>
    <item>
      <title>Re: Plot of Hazard Ratio against a Continuous Predictor</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Plot-of-Hazard-Ratio-against-a-Continuous-Predictor/m-p/620222#M77150</link>
      <description>&lt;P&gt;I cannot seem to find a logical reason why it shouldn't work and it doesn't work for any variation so perhaps that option isn't supported for PROC PHREG though it doesn't say that anywhere as far as I can see.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Maybe&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13684"&gt;@Rick_SAS&lt;/a&gt;&amp;nbsp;himself can comment &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;There's full code below to generate an example/test code.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-SPOILER&gt;
&lt;P&gt;&lt;BR /&gt;proc format;&lt;BR /&gt;value yesno 0='no' 10='yes';&lt;BR /&gt;run;&lt;/P&gt;
&lt;P&gt;data VALung;&lt;BR /&gt;drop check m;&lt;BR /&gt;retain Therapy Cell;&lt;BR /&gt;infile cards column=column;&lt;BR /&gt;length Check $ 1;&lt;BR /&gt;label Time='time to death in days'&lt;BR /&gt;Kps='Karnofsky performance scale'&lt;BR /&gt;Duration='months from diagnosis to randomization'&lt;BR /&gt;Age='age in years'&lt;BR /&gt;Prior='prior therapy'&lt;BR /&gt;Cell='cell type'&lt;BR /&gt;Therapy='type of treatment';&lt;BR /&gt;format Prior yesno.;&lt;BR /&gt;M=Column;&lt;BR /&gt;input Check $ @@;&lt;BR /&gt;if M&amp;gt;Column then M=1;&lt;BR /&gt;if Check='s'|Check='t' then do;&lt;BR /&gt;input @M Therapy $ Cell $;&lt;BR /&gt;delete;&lt;BR /&gt;end;&lt;BR /&gt;else do;&lt;BR /&gt;input @M Time Kps Duration Age Prior @@;&lt;BR /&gt;Status=(Time&amp;gt;0);&lt;BR /&gt;Time=abs(Time);&lt;BR /&gt;end;&lt;BR /&gt;datalines;&lt;BR /&gt;standard squamous&lt;BR /&gt;72 60 7 69 0 411 70 5 64 10 228 60 3 38 0 126 60 9 63 10&lt;BR /&gt;118 70 11 65 10 10 20 5 49 0 82 40 10 69 10 110 80 29 68 0&lt;BR /&gt;314 50 18 43 0 -100 70 6 70 0 42 60 4 81 0 8 40 58 63 10&lt;BR /&gt;144 30 4 63 0 -25 80 9 52 10 11 70 11 48 10&lt;BR /&gt;standard small&lt;BR /&gt;30 60 3 61 0 384 60 9 42 0 4 40 2 35 0 54 80 4 63 10&lt;BR /&gt;13 60 4 56 0 -123 40 3 55 0 -97 60 5 67 0 153 60 14 63 10&lt;BR /&gt;59 30 2 65 0 117 80 3 46 0 16 30 4 53 10 151 50 12 69 0&lt;BR /&gt;22 60 4 68 0 56 80 12 43 10 21 40 2 55 10 18 20 15 42 0&lt;BR /&gt;139 80 2 64 0 20 30 5 65 0 31 75 3 65 0 52 70 2 55 0&lt;BR /&gt;287 60 25 66 10 18 30 4 60 0 51 60 1 67 0 122 80 28 53 0&lt;BR /&gt;27 60 8 62 0 54 70 1 67 0 7 50 7 72 0 63 50 11 48 0&lt;BR /&gt;392 40 4 68 0 10 40 23 67 10&lt;BR /&gt;standard adeno&lt;BR /&gt;8 20 19 61 10 92 70 10 60 0 35 40 6 62 0 117 80 2 38 0&lt;BR /&gt;132 80 5 50 0 12 50 4 63 10 162 80 5 64 0 3 30 3 43 0&lt;BR /&gt;95 80 4 34 0&lt;BR /&gt;standard large&lt;BR /&gt;177 50 16 66 10 162 80 5 62 0 216 50 15 52 0 553 70 2 47 0&lt;BR /&gt;278 60 12 63 0 12 40 12 68 10 260 80 5 45 0 200 80 12 41 10&lt;BR /&gt;156 70 2 66 0 -182 90 2 62 0 143 90 8 60 0 105 80 11 66 0&lt;BR /&gt;103 80 5 38 0 250 70 8 53 10 100 60 13 37 10&lt;BR /&gt;test squamous&lt;BR /&gt;999 90 12 54 10 112 80 6 60 0 -87 80 3 48 0 -231 50 8 52 10&lt;BR /&gt;242 50 1 70 0 991 70 7 50 10 111 70 3 62 0 1 20 21 65 10&lt;BR /&gt;587 60 3 58 0 389 90 2 62 0 33 30 6 64 0 25 20 36 63 0&lt;BR /&gt;357 70 13 58 0 467 90 2 64 0 201 80 28 52 10 1 50 7 35 0&lt;BR /&gt;30 70 11 63 0 44 60 13 70 10 283 90 2 51 0 15 50 13 40 10&lt;BR /&gt;test small&lt;BR /&gt;25 30 2 69 0 -103 70 22 36 10 21 20 4 71 0 13 30 2 62 0&lt;BR /&gt;87 60 2 60 0 2 40 36 44 10 20 30 9 54 10 7 20 11 66 0&lt;BR /&gt;24 60 8 49 0 99 70 3 72 0 8 80 2 68 0 99 85 4 62 0&lt;BR /&gt;61 70 2 71 0 25 70 2 70 0 95 70 1 61 0 80 50 17 71 0&lt;BR /&gt;51 30 87 59 10 29 40 8 67 0&lt;BR /&gt;test adeno&lt;BR /&gt;24 40 2 60 0 18 40 5 69 10 -83 99 3 57 0 31 80 3 39 0&lt;BR /&gt;51 60 5 62 0 90 60 22 50 10 52 60 3 43 0 73 60 3 70 0&lt;BR /&gt;8 50 5 66 0 36 70 8 61 0 48 10 4 81 0 7 40 4 58 0&lt;BR /&gt;140 70 3 63 0 186 90 3 60 0 84 80 4 62 10 19 50 10 42 0&lt;BR /&gt;45 40 3 69 0 80 40 4 63 0&lt;BR /&gt;test large&lt;BR /&gt;52 60 4 45 0 164 70 15 68 10 19 30 4 39 10 53 60 12 66 0&lt;BR /&gt;15 30 5 63 0 43 60 11 49 10 340 80 10 64 10 133 75 1 65 0&lt;BR /&gt;111 60 5 64 0 231 70 18 67 10 378 80 4 65 0 49 30 3 37 0&lt;BR /&gt;;&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;proc phreg data=VALung;&lt;BR /&gt;class Prior(ref='no') Cell(ref='large') Therapy(ref='standard');&lt;BR /&gt;model Time*Status(0) = Kps Duration Age Cell Therapy;&lt;BR /&gt;store out=myModel; &lt;BR /&gt;run;&lt;/P&gt;
&lt;P&gt;proc plm source = myModel;&lt;BR /&gt;effectplot fit(x=KPS);&lt;BR /&gt;run;&lt;/P&gt;
&lt;/LI-SPOILER&gt;</description>
      <pubDate>Mon, 27 Jan 2020 16:44:10 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Plot-of-Hazard-Ratio-against-a-Continuous-Predictor/m-p/620222#M77150</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2020-01-27T16:44:10Z</dc:date>
    </item>
    <item>
      <title>Re: Plot of Hazard Ratio against a Continuous Predictor</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Plot-of-Hazard-Ratio-against-a-Continuous-Predictor/m-p/620284#M77153</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13879"&gt;@Reeza&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;Survival is not the same as the hazardratio, so are you asking for the predicted survival or the hazardratio? Your question seems to consider them the same thing which isn't correct AFAIK.&lt;BR /&gt;&lt;BR /&gt;Assuming you're looking at&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;No, I am not assuming that survival and HR are the same thing. As a first step, I wanted to plot the survival against time to treatment. I want to see what the survival probability versus time to treatment plot looks like. Then I want to figure out how to plot HR against time to treatment. Finally, I have to figure out how to use Recursive Partitioning Analysis to get the HR versus time to treatment plot and see what difference RPA makes to this plot. Hope I have cleared things up a little bit.&lt;/P&gt;</description>
      <pubDate>Mon, 27 Jan 2020 18:54:24 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Plot-of-Hazard-Ratio-against-a-Continuous-Predictor/m-p/620284#M77153</guid>
      <dc:creator>SriniR</dc:creator>
      <dc:date>2020-01-27T18:54:24Z</dc:date>
    </item>
    <item>
      <title>Re: Plot of Hazard Ratio against a Continuous Predictor</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Plot-of-Hazard-Ratio-against-a-Continuous-Predictor/m-p/620286#M77154</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13879"&gt;@Reeza&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;&lt;P&gt;I cannot seem to find a logical reason why it shouldn't work and it doesn't work for any variation so perhaps that option isn't supported for PROC PHREG though it doesn't say that anywhere as far as I can see.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Maybe&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13684"&gt;@Rick_SAS&lt;/a&gt;&amp;nbsp;himself can comment &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;&lt;P&gt;There's full code below to generate an example/test code.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-SPOILER&gt;&lt;P&gt;&lt;BR /&gt;proc format;&lt;BR /&gt;value yesno 0='no' 10='yes';&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;data VALung;&lt;BR /&gt;drop check m;&lt;BR /&gt;retain Therapy Cell;&lt;BR /&gt;infile cards column=column;&lt;BR /&gt;length Check $ 1;&lt;BR /&gt;label Time='time to death in days'&lt;BR /&gt;Kps='Karnofsky performance scale'&lt;BR /&gt;Duration='months from diagnosis to randomization'&lt;BR /&gt;Age='age in years'&lt;BR /&gt;Prior='prior therapy'&lt;BR /&gt;Cell='cell type'&lt;BR /&gt;Therapy='type of treatment';&lt;BR /&gt;format Prior yesno.;&lt;BR /&gt;M=Column;&lt;BR /&gt;input Check $ @@;&lt;BR /&gt;if M&amp;gt;Column then M=1;&lt;BR /&gt;if Check='s'|Check='t' then do;&lt;BR /&gt;input @M Therapy $ Cell $;&lt;BR /&gt;delete;&lt;BR /&gt;end;&lt;BR /&gt;else do;&lt;BR /&gt;input @M Time Kps Duration Age Prior @@;&lt;BR /&gt;Status=(Time&amp;gt;0);&lt;BR /&gt;Time=abs(Time);&lt;BR /&gt;end;&lt;BR /&gt;datalines;&lt;BR /&gt;standard squamous&lt;BR /&gt;72 60 7 69 0 411 70 5 64 10 228 60 3 38 0 126 60 9 63 10&lt;BR /&gt;118 70 11 65 10 10 20 5 49 0 82 40 10 69 10 110 80 29 68 0&lt;BR /&gt;314 50 18 43 0 -100 70 6 70 0 42 60 4 81 0 8 40 58 63 10&lt;BR /&gt;144 30 4 63 0 -25 80 9 52 10 11 70 11 48 10&lt;BR /&gt;standard small&lt;BR /&gt;30 60 3 61 0 384 60 9 42 0 4 40 2 35 0 54 80 4 63 10&lt;BR /&gt;13 60 4 56 0 -123 40 3 55 0 -97 60 5 67 0 153 60 14 63 10&lt;BR /&gt;59 30 2 65 0 117 80 3 46 0 16 30 4 53 10 151 50 12 69 0&lt;BR /&gt;22 60 4 68 0 56 80 12 43 10 21 40 2 55 10 18 20 15 42 0&lt;BR /&gt;139 80 2 64 0 20 30 5 65 0 31 75 3 65 0 52 70 2 55 0&lt;BR /&gt;287 60 25 66 10 18 30 4 60 0 51 60 1 67 0 122 80 28 53 0&lt;BR /&gt;27 60 8 62 0 54 70 1 67 0 7 50 7 72 0 63 50 11 48 0&lt;BR /&gt;392 40 4 68 0 10 40 23 67 10&lt;BR /&gt;standard adeno&lt;BR /&gt;8 20 19 61 10 92 70 10 60 0 35 40 6 62 0 117 80 2 38 0&lt;BR /&gt;132 80 5 50 0 12 50 4 63 10 162 80 5 64 0 3 30 3 43 0&lt;BR /&gt;95 80 4 34 0&lt;BR /&gt;standard large&lt;BR /&gt;177 50 16 66 10 162 80 5 62 0 216 50 15 52 0 553 70 2 47 0&lt;BR /&gt;278 60 12 63 0 12 40 12 68 10 260 80 5 45 0 200 80 12 41 10&lt;BR /&gt;156 70 2 66 0 -182 90 2 62 0 143 90 8 60 0 105 80 11 66 0&lt;BR /&gt;103 80 5 38 0 250 70 8 53 10 100 60 13 37 10&lt;BR /&gt;test squamous&lt;BR /&gt;999 90 12 54 10 112 80 6 60 0 -87 80 3 48 0 -231 50 8 52 10&lt;BR /&gt;242 50 1 70 0 991 70 7 50 10 111 70 3 62 0 1 20 21 65 10&lt;BR /&gt;587 60 3 58 0 389 90 2 62 0 33 30 6 64 0 25 20 36 63 0&lt;BR /&gt;357 70 13 58 0 467 90 2 64 0 201 80 28 52 10 1 50 7 35 0&lt;BR /&gt;30 70 11 63 0 44 60 13 70 10 283 90 2 51 0 15 50 13 40 10&lt;BR /&gt;test small&lt;BR /&gt;25 30 2 69 0 -103 70 22 36 10 21 20 4 71 0 13 30 2 62 0&lt;BR /&gt;87 60 2 60 0 2 40 36 44 10 20 30 9 54 10 7 20 11 66 0&lt;BR /&gt;24 60 8 49 0 99 70 3 72 0 8 80 2 68 0 99 85 4 62 0&lt;BR /&gt;61 70 2 71 0 25 70 2 70 0 95 70 1 61 0 80 50 17 71 0&lt;BR /&gt;51 30 87 59 10 29 40 8 67 0&lt;BR /&gt;test adeno&lt;BR /&gt;24 40 2 60 0 18 40 5 69 10 -83 99 3 57 0 31 80 3 39 0&lt;BR /&gt;51 60 5 62 0 90 60 22 50 10 52 60 3 43 0 73 60 3 70 0&lt;BR /&gt;8 50 5 66 0 36 70 8 61 0 48 10 4 81 0 7 40 4 58 0&lt;BR /&gt;140 70 3 63 0 186 90 3 60 0 84 80 4 62 10 19 50 10 42 0&lt;BR /&gt;45 40 3 69 0 80 40 4 63 0&lt;BR /&gt;test large&lt;BR /&gt;52 60 4 45 0 164 70 15 68 10 19 30 4 39 10 53 60 12 66 0&lt;BR /&gt;15 30 5 63 0 43 60 11 49 10 340 80 10 64 10 133 75 1 65 0&lt;BR /&gt;111 60 5 64 0 231 70 18 67 10 378 80 4 65 0 49 30 3 37 0&lt;BR /&gt;;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;proc phreg data=VALung;&lt;BR /&gt;class Prior(ref='no') Cell(ref='large') Therapy(ref='standard');&lt;BR /&gt;model Time*Status(0) = Kps Duration Age Cell Therapy;&lt;BR /&gt;store out=myModel;&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;proc plm source = myModel;&lt;BR /&gt;effectplot fit(x=KPS);&lt;BR /&gt;run;&lt;/P&gt;&lt;/LI-SPOILER&gt;&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you so much. I will try out the code.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 27 Jan 2020 18:58:10 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Plot-of-Hazard-Ratio-against-a-Continuous-Predictor/m-p/620286#M77154</guid>
      <dc:creator>SriniR</dc:creator>
      <dc:date>2020-01-27T18:58:10Z</dc:date>
    </item>
    <item>
      <title>Re: Plot of Hazard Ratio against a Continuous Predictor</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Plot-of-Hazard-Ratio-against-a-Continuous-Predictor/m-p/620347#M77160</link>
      <description>&lt;P&gt;I get the same message. Please see below:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;DIV class="dijitContentPane dijitBorderContainer-child dijitBorderContainer-dijitContentPane dijitBorderContainerPane dijitAlignCenter"&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;DIV class="sasSource"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;1 OPTIONS NONOTES NOSTIMER NOSOURCE NOSYNTAXCHECK;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;72&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;73 proc format;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;74 value yesno 0='no' 10='yes';&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: Format YESNO has been output.&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;75 run;&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: PROCEDURE FORMAT used (Total process time):&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;real time 0.00 seconds&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;cpu time 0.01 seconds&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;76 data VALung;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;77 drop check m;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;78 retain Therapy Cell;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;79 infile cards column=column;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;80 length Check $ 1;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;81 label Time='time to death in days'&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;82 Kps='Karnofsky performance scale'&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;83 Duration='months from diagnosis to randomization'&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;84 Age='age in years'&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;85 Prior='prior therapy'&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;86 Cell='cell type'&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;87 Therapy='type of treatment';&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;88 format Prior yesno.;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;89 M=Column;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;90 input Check $ @@;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;91 if M&amp;gt;Column then M=1;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;92 if Check='s'|Check='t' then do;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;93 input @M Therapy $ Cell $;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;94 delete;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;95 end;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;96 else do;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;97 input @M Time Kps Duration Age Prior @@;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;98 Status=(Time&amp;gt;0);&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;99 Time=abs(Time);&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;100 end;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;101 datalines;&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: SAS went to a new line when INPUT statement reached past the end of a line.&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: The data set WORK.VALUNG has 137 observations and 8 variables.&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: DATA statement used (Total process time):&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;real time 0.00 seconds&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;cpu time 0.01 seconds&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;147 ;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;148&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;149 proc phreg data=VALung;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;150 class Prior(ref='no') Cell(ref='large') Therapy(ref='standard');&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;151 model Time*Status(0) = Kps Duration Age Cell Therapy;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;152 store out=myModel;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;153 run;&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: Convergence criterion (GCONV=1E-8) satisfied.&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: The PHREG procedure generated the model item store WORK.MYMODEL.&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: PROCEDURE PHREG used (Total process time):&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;real time 0.14 seconds&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;cpu time 0.12 seconds&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: Format YESNO is already on the library WORK.FORMATS.&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: Format YESNO has been output.&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: There were 2 observations read from the data set WORK.DATA1.&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: PROCEDURE FORMAT used (Total process time):&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;real time 0.00 seconds&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;cpu time 0.00 seconds&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;154 proc plm source = myModel;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;155 effectplot fit(x=KPS);&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: The format YESNO was loaded from item store WORK.MYMODEL.&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: The data set WORK.DATA1 has 2 observations and 21 variables.&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;156 run;&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class="sasWarning"&gt;&lt;FONT color="#993300"&gt;WARNING: The EFFECTPLOT statement cannot be used for the specified model.&lt;/FONT&gt;&lt;/DIV&gt;&lt;DIV class="sasWarning"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: PROCEDURE PLM used (Total process time):&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;real time 0.03 seconds&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;cpu time 0.04 seconds&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;157&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;158 OPTIONS NONOTES NOSTIMER NOSOURCE NOSYNTAXCHECK;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;170&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Mon, 27 Jan 2020 21:25:27 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Plot-of-Hazard-Ratio-against-a-Continuous-Predictor/m-p/620347#M77160</guid>
      <dc:creator>SriniR</dc:creator>
      <dc:date>2020-01-27T21:25:27Z</dc:date>
    </item>
    <item>
      <title>Re: Plot of Hazard Ratio against a Continuous Predictor</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Plot-of-Hazard-Ratio-against-a-Continuous-Predictor/m-p/620350#M77161</link>
      <description>I said it didn't work. The code is for tech support or Rick to test to make it easier for them to diagnose the issue. It's beyond me at this point in time.</description>
      <pubDate>Mon, 27 Jan 2020 21:31:07 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Plot-of-Hazard-Ratio-against-a-Continuous-Predictor/m-p/620350#M77161</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2020-01-27T21:31:07Z</dc:date>
    </item>
    <item>
      <title>Re: Plot of Hazard Ratio against a Continuous Predictor</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Plot-of-Hazard-Ratio-against-a-Continuous-Predictor/m-p/620415#M77169</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13879"&gt;@Reeza&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;I said it didn't work. The code is for tech support or Rick to test to make it easier for them to diagnose the issue. It's beyond me at this point in time.&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;My apologies. I should have read post properly.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 28 Jan 2020 02:51:52 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Plot-of-Hazard-Ratio-against-a-Continuous-Predictor/m-p/620415#M77169</guid>
      <dc:creator>SriniR</dc:creator>
      <dc:date>2020-01-28T02:51:52Z</dc:date>
    </item>
    <item>
      <title>Re: Plot of Hazard Ratio against a Continuous Predictor</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Plot-of-Hazard-Ratio-against-a-Continuous-Predictor/m-p/620545#M77175</link>
      <description>&lt;P&gt;The message&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;WARNING: The EFFECTPLOT statement cannot be used for the specified model.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;means that the EFFECTPLOT statement does not support the PHREG model. Create &lt;A href="https://go.documentation.sas.com/?docsetId=statug&amp;amp;docsetTarget=statug_phreg_details130.htm&amp;amp;docsetVersion=15.1&amp;amp;locale=en#statug.phreg.phrdetbaselineout" target="_self"&gt;an output data set from PHREG&lt;/A&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;and use PROC SGPLOT to create the graph you want.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 28 Jan 2020 15:45:19 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Plot-of-Hazard-Ratio-against-a-Continuous-Predictor/m-p/620545#M77175</guid>
      <dc:creator>Rick_SAS</dc:creator>
      <dc:date>2020-01-28T15:45:19Z</dc:date>
    </item>
    <item>
      <title>Re: Plot of Hazard Ratio against a Continuous Predictor</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Plot-of-Hazard-Ratio-against-a-Continuous-Predictor/m-p/620666#M77179</link>
      <description>&lt;P&gt;Can the documentation be updated to reflect this?&lt;/P&gt;
&lt;P&gt;Given that PROC PHREG is supposed to be supported in PLM but not for specific statement when there's no indication in the documentation otherwiset is confusing.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;BLOCKQUOTE&gt;
&lt;P&gt;&lt;SPAN&gt;The following procedures support the STORE statement for the generation of item stores that can be processed with the PLM procedure: GEE, GENMOD, GLIMMIX, GLM, GLMSELECT, LIFEREG, LOGISTIC, MIXED, ORTHOREG, PHREG, PROBIT, SURVEYLOGISTIC, SURVEYPHREG, and SURVEYREG. The RELIABILITY procedure in SAS/QC software also supports the STORE statement. For details about the STORE statement, see the section&amp;nbsp;&lt;/SPAN&gt;&lt;A tabindex="0" href="https://documentation.sas.com/?docsetId=statug&amp;amp;docsetTarget=statug_introcom_sect068.htm&amp;amp;docsetVersion=15.1&amp;amp;locale=en" data-docset-id="statug" data-docset-version="15.1" data-original-href="statug_introcom_sect068.htm"&gt;STORE Statement&lt;/A&gt;&lt;SPAN&gt;&amp;nbsp;of&amp;nbsp;&lt;/SPAN&gt;&lt;A tabindex="0" href="https://documentation.sas.com/?docsetId=statug&amp;amp;docsetTarget=statug_introcom_toc.htm&amp;amp;docsetVersion=15.1&amp;amp;locale=en" data-docset-id="statug" data-docset-version="15.1" data-original-href="statug_introcom_toc.htm"&gt;Chapter&amp;nbsp;19: Shared Concepts and Topics&lt;/A&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;/P&gt;
&lt;/BLOCKQUOTE&gt;</description>
      <pubDate>Tue, 28 Jan 2020 21:18:27 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Plot-of-Hazard-Ratio-against-a-Continuous-Predictor/m-p/620666#M77179</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2020-01-28T21:18:27Z</dc:date>
    </item>
    <item>
      <title>Re: Plot of Hazard Ratio against a Continuous Predictor</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Plot-of-Hazard-Ratio-against-a-Continuous-Predictor/m-p/621204#M77216</link>
      <description>&lt;P&gt;Yes, I have asked the developer to update the doc for the EFFECTPLOT statement.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;In general, the EFFECTPLOT statement supports fixed-effects for generalized linear models.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;After some basic testing, my colleagues and I think that&amp;nbsp;the following procedures are NOT supported by the EFFECTPLOT statement:&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;&lt;SPAN&gt;LIFEREG, PHREG, RMSTREG, and SURVEYPHREG.&lt;/SPAN&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;SPAN&gt;PROC LOGISTIC with a STRATA statement (conditional logistic regression)&lt;/SPAN&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;SPAN&gt;The effect plot for the MIXED procedure only supports the fixed effects.&lt;/SPAN&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;SPAN&gt;The RELIABILITY procedure in SAS/QC (but you can use the EFFECTPLOT statement in the procedure).&lt;/SPAN&gt;&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I do not know whether this list is comprehensive.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 30 Jan 2020 19:27:07 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Plot-of-Hazard-Ratio-against-a-Continuous-Predictor/m-p/621204#M77216</guid>
      <dc:creator>Rick_SAS</dc:creator>
      <dc:date>2020-01-30T19:27:07Z</dc:date>
    </item>
  </channel>
</rss>

