<?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 adjust for several covariates in mixed model (baseline adjustments) in Statistical Procedures</title>
    <link>https://communities.sas.com/t5/Statistical-Procedures/how-to-adjust-for-several-covariates-in-mixed-model-baseline/m-p/516876#M26354</link>
    <description>&lt;P&gt;Have you got the answer for your question?&lt;/P&gt;&lt;P&gt;I have a question about your data set.&amp;nbsp;Did you add your&amp;nbsp;&lt;SPAN&gt;baseline weight for the follow up studies? For example:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;person&amp;nbsp; &amp;nbsp; visit&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; group&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;weight&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;bloodpressure&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;1&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;baseline&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;placebo&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;baseline weight&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 100&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;2&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;baseline&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; active&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;baseline weight&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 101&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;1&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;visit1&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; placebo&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;FONT color="#FF0000"&gt;baseline weight or visit1 weight?&lt;/FONT&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 100&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;2&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; visit1&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;nbsp;active&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;FONT color="#FF0000"&gt;baseline weight or visit1 weight?&lt;/FONT&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;101&lt;/SPAN&gt;&lt;/P&gt;</description>
    <pubDate>Wed, 28 Nov 2018 21:03:41 GMT</pubDate>
    <dc:creator>PSZ</dc:creator>
    <dc:date>2018-11-28T21:03:41Z</dc:date>
    <item>
      <title>how to adjust for several covariates in mixed model (baseline adjustments)</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/how-to-adjust-for-several-covariates-in-mixed-model-baseline/m-p/266928#M14123</link>
      <description>&lt;P&gt;In a placebo controlled randomized study invesigating the effect of a drug on weight, blood pressure ect, I found that there is difference in the baseline weight between the two groups (placebo group and active group).&lt;/P&gt;&lt;P&gt;The study has repeated measurements ,and therefore I am using mixed model. To adjust for baseline difference in my outcome weight, I have build this model:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;proc&lt;/STRONG&gt; &lt;STRONG&gt;mixed&lt;/STRONG&gt; data=sasuser.data;&lt;/P&gt;&lt;P&gt;WHERE week &amp;gt; &lt;STRONG&gt;0&lt;/STRONG&gt;;&lt;/P&gt;&lt;P&gt;class id week treat (ref='2');&lt;/P&gt;&lt;P&gt;model weight = week treat treat*week weight0*treat&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; /solution CL DDFM=KR;&lt;/P&gt;&lt;P&gt;repeated week / subject=id type=un r rcorr;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;run&lt;/STRONG&gt;;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;where weight0 is mean weight at baseline for both groups. As far as I understand, I put it as a covariate (ANCOVA).&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;However, I want to adjust for other baseline differences, such as age and gender. My question is therefore: How do I do that in the model above? Can I&amp;nbsp;have more than one covariate&amp;nbsp;at the same time?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;THANK YOU!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 28 Apr 2016 11:58:25 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/how-to-adjust-for-several-covariates-in-mixed-model-baseline/m-p/266928#M14123</guid>
      <dc:creator>CamillaSvensson</dc:creator>
      <dc:date>2016-04-28T11:58:25Z</dc:date>
    </item>
    <item>
      <title>Re: how to adjust for several covariates in mixed model (baseline adjustments)</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/how-to-adjust-for-several-covariates-in-mixed-model-baseline/m-p/268505#M14132</link>
      <description>&lt;P&gt;Yes, you may have more than one covariate (although gender would most likely be included in the CLASS statement as a categorical covariate). &amp;nbsp;Get a copy of SAS for Mixed Models, 2nd ed. by Littell et al., and look at Chapter 7 Analysis of Covariance for very good coverage of&amp;nbsp;this subject.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Steve Denham&lt;/P&gt;</description>
      <pubDate>Thu, 05 May 2016 13:11:17 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/how-to-adjust-for-several-covariates-in-mixed-model-baseline/m-p/268505#M14132</guid>
      <dc:creator>SteveDenham</dc:creator>
      <dc:date>2016-05-05T13:11:17Z</dc:date>
    </item>
    <item>
      <title>Re: how to adjust for several covariates in mixed model (baseline adjustments)</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/how-to-adjust-for-several-covariates-in-mixed-model-baseline/m-p/268902#M14162</link>
      <description>&lt;P&gt;You want to use the values of the covariates for each subject (ID), not the group means.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;With multiple covariates, I find it useful to remember that my model is now a multiple regression, with all the assumptions and issues associated with multiple regression (multicollinearity, influence, etc.). So in addition to Steve's suggestions (the "bible" for mixed models in SAS, always a good idea), read up on multiple regression.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Walt Stroup told me this week&amp;nbsp;that the 3rd edition could be out this year. Which would be swell.&lt;/P&gt;</description>
      <pubDate>Fri, 06 May 2016 19:57:34 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/how-to-adjust-for-several-covariates-in-mixed-model-baseline/m-p/268902#M14162</guid>
      <dc:creator>sld</dc:creator>
      <dc:date>2016-05-06T19:57:34Z</dc:date>
    </item>
    <item>
      <title>Re: how to adjust for several covariates in mixed model (baseline adjustments)</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/how-to-adjust-for-several-covariates-in-mixed-model-baseline/m-p/516876#M26354</link>
      <description>&lt;P&gt;Have you got the answer for your question?&lt;/P&gt;&lt;P&gt;I have a question about your data set.&amp;nbsp;Did you add your&amp;nbsp;&lt;SPAN&gt;baseline weight for the follow up studies? For example:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;person&amp;nbsp; &amp;nbsp; visit&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; group&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;weight&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;bloodpressure&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;1&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;baseline&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;placebo&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;baseline weight&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 100&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;2&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;baseline&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; active&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;baseline weight&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 101&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;1&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;visit1&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; placebo&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;FONT color="#FF0000"&gt;baseline weight or visit1 weight?&lt;/FONT&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 100&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;2&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; visit1&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;nbsp;active&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;FONT color="#FF0000"&gt;baseline weight or visit1 weight?&lt;/FONT&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;101&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 28 Nov 2018 21:03:41 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/how-to-adjust-for-several-covariates-in-mixed-model-baseline/m-p/516876#M26354</guid>
      <dc:creator>PSZ</dc:creator>
      <dc:date>2018-11-28T21:03:41Z</dc:date>
    </item>
  </channel>
</rss>

