<?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: longitudinal proc mixed in Statistical Procedures</title>
    <link>https://communities.sas.com/t5/Statistical-Procedures/longitudinal-proc-mixed/m-p/283543#M14943</link>
    <description>&lt;P&gt;This looks like you need to use an ESTIMATE statement with a SUBJECT option to set up random-effect contrasts.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Or use the LSMEANS statement with an AT option. &amp;nbsp;However, that wouldn't give you a slope, but rather a point estimate at, for instance, PRAC = 50.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The thing here is that the random intercept and slope are independent of the value of PRAC, so maybe I am completely misinterpreting your question.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Steve Denham&lt;/P&gt;</description>
    <pubDate>Mon, 11 Jul 2016 17:03:32 GMT</pubDate>
    <dc:creator>SteveDenham</dc:creator>
    <dc:date>2016-07-11T17:03:32Z</dc:date>
    <item>
      <title>longitudinal proc mixed</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/longitudinal-proc-mixed/m-p/280146#M14764</link>
      <description>&lt;P&gt;Hi - I am using PROC MIXED to estimate a longitudinal &amp;nbsp;model. Below is a sample code&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;PROC MIXED DATA=TEST3 COVTEST NOCLPRINT NOITPRINT METHOD=ML;&lt;/P&gt;&lt;P&gt;CLASS SUBID RACE;&lt;/P&gt;&lt;P&gt;MODEL=TMA PRAC CAGE &amp;nbsp;RACE|CAGE/SOLUTION DDFM=BETWITHIN &amp;nbsp;OUTP=P&amp;nbsp;;&lt;/P&gt;&lt;P&gt;RANDOM INTERCEPT CAGE/SOLUTION TYPE=UN SUBJECT=SUBID;&lt;/P&gt;&lt;P&gt;RUN;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;TMA is a continous outcome variable, PRAC is a cumumlative continous exposure&amp;nbsp;variable (cumulative exposure to a toxic drug) and CAGE is a grand mean centered age variable, RACE is a three categroical level race variable. &amp;nbsp;My main predictor of interest is PRAC. My question is in order to estimate the association between PRAC and TMA - over duration of study, I include PRAC|CAGE interaction in the model?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you for your help&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 25 Jun 2016 15:26:15 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/longitudinal-proc-mixed/m-p/280146#M14764</guid>
      <dc:creator>akonamone</dc:creator>
      <dc:date>2016-06-25T15:26:15Z</dc:date>
    </item>
    <item>
      <title>Re: longitudinal proc mixed</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/longitudinal-proc-mixed/m-p/280811#M14798</link>
      <description>&lt;P&gt;it would certainly let you know if the relationship between PRAC and TMA differed due to CAGE. &amp;nbsp;I did notice what is probably a typo in your model statement--the equals sign should follow TMA, not precede it.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Steve Denham&lt;/P&gt;</description>
      <pubDate>Tue, 28 Jun 2016 14:47:51 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/longitudinal-proc-mixed/m-p/280811#M14798</guid>
      <dc:creator>SteveDenham</dc:creator>
      <dc:date>2016-06-28T14:47:51Z</dc:date>
    </item>
    <item>
      <title>Re: longitudinal proc mixed</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/longitudinal-proc-mixed/m-p/282245#M14878</link>
      <description>&lt;P&gt;Thank you for the correction.&lt;/P&gt;</description>
      <pubDate>Tue, 05 Jul 2016 18:46:11 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/longitudinal-proc-mixed/m-p/282245#M14878</guid>
      <dc:creator>akonamone</dc:creator>
      <dc:date>2016-07-05T18:46:11Z</dc:date>
    </item>
    <item>
      <title>Re: longitudinal proc mixed</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/longitudinal-proc-mixed/m-p/282247#M14879</link>
      <description>&lt;P&gt;I have another related question for the&lt;SPAN&gt;&amp;nbsp;cumumlative continous exposure&amp;nbsp;variable PRAC. How can I query PROC MIXED to produce estimates of slopes at various points on the association curve between PRAC and the outcome. For instance, if I wanted to know the slopes of the outcome when PRAC = 50?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Thank you&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 05 Jul 2016 18:51:15 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/longitudinal-proc-mixed/m-p/282247#M14879</guid>
      <dc:creator>akonamone</dc:creator>
      <dc:date>2016-07-05T18:51:15Z</dc:date>
    </item>
    <item>
      <title>Re: longitudinal proc mixed</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/longitudinal-proc-mixed/m-p/283543#M14943</link>
      <description>&lt;P&gt;This looks like you need to use an ESTIMATE statement with a SUBJECT option to set up random-effect contrasts.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Or use the LSMEANS statement with an AT option. &amp;nbsp;However, that wouldn't give you a slope, but rather a point estimate at, for instance, PRAC = 50.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The thing here is that the random intercept and slope are independent of the value of PRAC, so maybe I am completely misinterpreting your question.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Steve Denham&lt;/P&gt;</description>
      <pubDate>Mon, 11 Jul 2016 17:03:32 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/longitudinal-proc-mixed/m-p/283543#M14943</guid>
      <dc:creator>SteveDenham</dc:creator>
      <dc:date>2016-07-11T17:03:32Z</dc:date>
    </item>
  </channel>
</rss>

