<?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: How To Interpret The Effect of a Continuous Covariate on Mortality With Using PROC PHREG? in Statistical Procedures</title>
    <link>https://communities.sas.com/t5/Statistical-Procedures/How-To-Interpret-The-Effect-of-a-Continuous-Covariate-on/m-p/749143#M36433</link>
    <description>&lt;P&gt;You have not used a CLASS variable, so all numeric explanatory variables are treated as continuous. As the ERROR says: You can't nest continuous effects. &lt;A href="https://go.documentation.sas.com/doc/en/pgmsascdc/v_013/statug/statug_introcom_sect008.htm" target="_self"&gt;Here is the SAS documentation that discusses nested effects and how they are interpreted.&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;1. Are you treating Nparasite as continuous or discrete? If discrete, put NParasite in a CLASS statement.&lt;/P&gt;
&lt;P&gt;2. Usually the variable inside the parentheses (kul, in your example) is discrete. If that is the case here, put kul in a CLASS statement.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I don't think the ARRAY statement is doing anything, but perhaps you are showing only partial code. Personally, I would put the IF-THEN statement into a DATA step, but that is a personal preference.&lt;/P&gt;</description>
    <pubDate>Sun, 20 Jun 2021 18:38:24 GMT</pubDate>
    <dc:creator>Rick_SAS</dc:creator>
    <dc:date>2021-06-20T18:38:24Z</dc:date>
    <item>
      <title>How To Interpret The Effect of a Continuous Covariate on Mortality With Using PROC PHREG?</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/How-To-Interpret-The-Effect-of-a-Continuous-Covariate-on/m-p/748750#M36416</link>
      <description>&lt;P&gt;Hello everyone, I have 2 categorical predictor and 1 continious covariate measurements for a kind of parasites weight in grams and I converted it to counts so I'll be able to interpret 1 unit parasites effect on life span and mortality. Parasites were measured as weekly and deaths were examined as daily. Every cell has its own amount of parasite and so every each animal too. As I assess weekly measurments I can calculate daily amount of parasites, so its a daily varying covariate.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Life span is right censored and death is binomial. And I have to interpret that covariates quantitative effect on life span as ''1 unit increase in parasite and x unit decrease in days''. How can I do that?&lt;/P&gt;</description>
      <pubDate>Thu, 17 Jun 2021 21:38:12 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/How-To-Interpret-The-Effect-of-a-Continuous-Covariate-on/m-p/748750#M36416</guid>
      <dc:creator>CptPrice</dc:creator>
      <dc:date>2021-06-17T21:38:12Z</dc:date>
    </item>
    <item>
      <title>Re: How To Interpret The Effect of a Continuous Covariate on Mortality With Using PROC PHREG?</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/How-To-Interpret-The-Effect-of-a-Continuous-Covariate-on/m-p/749090#M36431</link>
      <description>&lt;P&gt;I suggest you post your PROC PHREG statements.&lt;/P&gt;</description>
      <pubDate>Sun, 20 Jun 2021 11:10:31 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/How-To-Interpret-The-Effect-of-a-Continuous-Covariate-on/m-p/749090#M36431</guid>
      <dc:creator>Rick_SAS</dc:creator>
      <dc:date>2021-06-20T11:10:31Z</dc:date>
    </item>
    <item>
      <title>Re: How To Interpret The Effect of a Continuous Covariate on Mortality With Using PROC PHREG?</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/How-To-Interpret-The-Effect-of-a-Continuous-Covariate-on/m-p/749134#M36432</link>
      <description>&lt;P&gt;I am still trying to constitute an appropriate and accurate statement list given my purpose.&lt;/P&gt;&lt;P&gt;But it's:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;PROC PHREG;&lt;BR /&gt;model age*dead(0)=kul kat Nparasite(kul);&lt;BR /&gt;array parasite{35} P8-P42;&lt;BR /&gt;IF age &amp;lt; 12 then Nparasite=0;&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;and log result is ''&lt;FONT color="#FF0000"&gt;ERROR: Nesting of continuous variable not allowed.&lt;FONT color="#000000"&gt;''.&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Sun, 20 Jun 2021 16:31:11 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/How-To-Interpret-The-Effect-of-a-Continuous-Covariate-on/m-p/749134#M36432</guid>
      <dc:creator>CptPrice</dc:creator>
      <dc:date>2021-06-20T16:31:11Z</dc:date>
    </item>
    <item>
      <title>Re: How To Interpret The Effect of a Continuous Covariate on Mortality With Using PROC PHREG?</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/How-To-Interpret-The-Effect-of-a-Continuous-Covariate-on/m-p/749143#M36433</link>
      <description>&lt;P&gt;You have not used a CLASS variable, so all numeric explanatory variables are treated as continuous. As the ERROR says: You can't nest continuous effects. &lt;A href="https://go.documentation.sas.com/doc/en/pgmsascdc/v_013/statug/statug_introcom_sect008.htm" target="_self"&gt;Here is the SAS documentation that discusses nested effects and how they are interpreted.&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;1. Are you treating Nparasite as continuous or discrete? If discrete, put NParasite in a CLASS statement.&lt;/P&gt;
&lt;P&gt;2. Usually the variable inside the parentheses (kul, in your example) is discrete. If that is the case here, put kul in a CLASS statement.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I don't think the ARRAY statement is doing anything, but perhaps you are showing only partial code. Personally, I would put the IF-THEN statement into a DATA step, but that is a personal preference.&lt;/P&gt;</description>
      <pubDate>Sun, 20 Jun 2021 18:38:24 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/How-To-Interpret-The-Effect-of-a-Continuous-Covariate-on/m-p/749143#M36433</guid>
      <dc:creator>Rick_SAS</dc:creator>
      <dc:date>2021-06-20T18:38:24Z</dc:date>
    </item>
    <item>
      <title>Re: How To Interpret The Effect of a Continuous Covariate on Mortality With Using PROC PHREG?</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/How-To-Interpret-The-Effect-of-a-Continuous-Covariate-on/m-p/749145#M36434</link>
      <description>What a mistake! I forgot to write CLASS statement, sorry.</description>
      <pubDate>Sun, 20 Jun 2021 18:49:07 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/How-To-Interpret-The-Effect-of-a-Continuous-Covariate-on/m-p/749145#M36434</guid>
      <dc:creator>CptPrice</dc:creator>
      <dc:date>2021-06-20T18:49:07Z</dc:date>
    </item>
    <item>
      <title>Re: How To Interpret The Effect of a Continuous Covariate on Mortality With Using PROC PHREG?</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/How-To-Interpret-The-Effect-of-a-Continuous-Covariate-on/m-p/749146#M36435</link>
      <description>&lt;P&gt;Nparasite is a continuous covariate, not discrete. I just followed the "&lt;SPAN style="font-size: medium; color: inherit; font-family: inherit;"&gt;Example 89.7 Time-Dependent Repeated Measurements of a Covariate" and all I want to interpret the effect of one unit parasite on lifespan or survivability. This is new statement:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: medium; color: inherit; font-family: inherit;"&gt;PROC PHREG;&lt;BR /&gt;class kul kat;&lt;BR /&gt;model yas*olum(0)=kul kat Nparasite;&lt;BR /&gt;array parasite{35} P8-P42;&lt;BR /&gt;IF yas &amp;lt; 12 then Nparasite=0;&lt;BR /&gt;run;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: medium; color: inherit; font-family: inherit;"&gt;and the result is&lt;/SPAN&gt;&lt;SPAN style="font-size: medium; color: inherit; font-family: inherit;"&gt;:&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Sun, 20 Jun 2021 19:02:24 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/How-To-Interpret-The-Effect-of-a-Continuous-Covariate-on/m-p/749146#M36435</guid>
      <dc:creator>CptPrice</dc:creator>
      <dc:date>2021-06-20T19:02:24Z</dc:date>
    </item>
    <item>
      <title>Re: How To Interpret The Effect of a Continuous Covariate on Mortality With Using PROC PHREG?</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/How-To-Interpret-The-Effect-of-a-Continuous-Covariate-on/m-p/749209#M36438</link>
      <description>&lt;P&gt;Your parameter estimate for the Nparasite variable is 0 with a missing value for the standard error. This often indicates that the variable is constant. You can check the range of the Nparasite variables by using PROC MEANS:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc means data=Have;
var Nparasite;
run;
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Your estimates for the kul and kat variables also look strange. I suggest that you check your data. Make sure that when you created it or imported it into SAS, you ended up with a valid SAS data set.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If possible, post your data here.&lt;/P&gt;</description>
      <pubDate>Mon, 21 Jun 2021 09:51:41 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/How-To-Interpret-The-Effect-of-a-Continuous-Covariate-on/m-p/749209#M36438</guid>
      <dc:creator>Rick_SAS</dc:creator>
      <dc:date>2021-06-21T09:51:41Z</dc:date>
    </item>
    <item>
      <title>Re: How To Interpret The Effect of a Continuous Covariate on Mortality With Using PROC PHREG?</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/How-To-Interpret-The-Effect-of-a-Continuous-Covariate-on/m-p/749233#M36439</link>
      <description>&lt;P&gt;Thank you for your attention. There are 4 control groups and 4 parasite groups. Actually, I have to compare these groups as 4vs4. Not just for PROC PHREG, how can I interpret absolute effect of parasite on mortality with repeated measurments?&lt;/P&gt;</description>
      <pubDate>Mon, 21 Jun 2021 11:00:54 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/How-To-Interpret-The-Effect-of-a-Continuous-Covariate-on/m-p/749233#M36439</guid>
      <dc:creator>CptPrice</dc:creator>
      <dc:date>2021-06-21T11:00:54Z</dc:date>
    </item>
  </channel>
</rss>

