<?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: Output predicted slopes for each individual in proc mixed in Statistical Procedures</title>
    <link>https://communities.sas.com/t5/Statistical-Procedures/Output-predicted-slopes-for-each-individual-in-proc-mixed/m-p/930843#M46385</link>
    <description>&lt;P&gt;The following usage note provides sample programs for obtaining subject-specific intercept and slope --&lt;/P&gt;
&lt;P&gt;&lt;A href="http://support.sas.com/kb/37109" target="_blank"&gt;http://support.sas.com/kb/37109&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;The following note shows how to plot these subject-specific models --&lt;/P&gt;
&lt;P&gt;&lt;A href="http://support.sas.com/kb/37110" target="_blank"&gt;http://support.sas.com/kb/37110&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Hope this helps,&lt;/P&gt;
&lt;P&gt;Jill&lt;/P&gt;</description>
    <pubDate>Tue, 04 Jun 2024 17:16:56 GMT</pubDate>
    <dc:creator>jiltao</dc:creator>
    <dc:date>2024-06-04T17:16:56Z</dc:date>
    <item>
      <title>Output predicted slopes for each individual in proc mixed</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Output-predicted-slopes-for-each-individual-in-proc-mixed/m-p/929647#M46318</link>
      <description>&lt;P&gt;is it possible to output &lt;STRONG&gt;predicted individual-level slopes&lt;/STRONG&gt; from proc mixed? Here is my current code. Thanks!&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc mixed data=all covtest cl;
  class ptID;
  model value=visitYr / s residual outp=pred;
  random int visitYr / type=un subject=ptID g gcorr v;
  ods output CovParms=covout solutionr=slopes;;
 run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Fri, 24 May 2024 21:16:30 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Output-predicted-slopes-for-each-individual-in-proc-mixed/m-p/929647#M46318</guid>
      <dc:creator>Abishekaa</dc:creator>
      <dc:date>2024-05-24T21:16:30Z</dc:date>
    </item>
    <item>
      <title>Re: Output predicted slopes for each individual in proc mixed</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Output-predicted-slopes-for-each-individual-in-proc-mixed/m-p/929649#M46319</link>
      <description>&lt;P&gt;See if this post is helpful:&amp;nbsp; &lt;A href="https://communities.sas.com/t5/Statistical-Procedures/predicted-value-proc-mixed/td-p/56468" target="_blank"&gt;https://communities.sas.com/t5/Statistical-Procedures/predicted-value-proc-mixed/td-p/56468&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 24 May 2024 22:11:37 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Output-predicted-slopes-for-each-individual-in-proc-mixed/m-p/929649#M46319</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2024-05-24T22:11:37Z</dc:date>
    </item>
    <item>
      <title>Re: Output predicted slopes for each individual in proc mixed</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Output-predicted-slopes-for-each-individual-in-proc-mixed/m-p/929651#M46320</link>
      <description>&lt;P&gt;Show us some of this &lt;CODE class=" language-sas"&gt;solutionr=slopes &lt;/CODE&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/102730"&gt;@Abishekaa&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;is it possible to output &lt;STRONG&gt;predicted individual-level slopes&lt;/STRONG&gt; from proc mixed? Here is my current code. Thanks!&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc mixed data=all covtest cl;
  class ptID;
  model value=visitYr / s residual outp=pred;
  random int visitYr / type=un subject=ptID g gcorr v;
  ods output CovParms=covout solutionr=slopes;;
 run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 24 May 2024 22:15:46 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Output-predicted-slopes-for-each-individual-in-proc-mixed/m-p/929651#M46320</guid>
      <dc:creator>data_null__</dc:creator>
      <dc:date>2024-05-24T22:15:46Z</dc:date>
    </item>
    <item>
      <title>Re: Output predicted slopes for each individual in proc mixed</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Output-predicted-slopes-for-each-individual-in-proc-mixed/m-p/929669#M46321</link>
      <description>&lt;P&gt;You could use SOLUTION option of RANDOM to get them.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc mixed data=sashelp.heart(obs=1000) covtest cl;
  class bp_status;
  model weight=height / s residual outp=pred;
  random int height / type=un subject=bp_status g gcorr v  &lt;FONT color="#FF0000"&gt;&lt;STRONG&gt;solution&lt;/STRONG&gt;&lt;/FONT&gt;;
  ods output CovParms=covout &lt;FONT color="#FF0000"&gt;&lt;STRONG&gt;solutionr=slopes&lt;/STRONG&gt;&lt;/FONT&gt;;;
 run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Sat, 25 May 2024 06:49:31 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Output-predicted-slopes-for-each-individual-in-proc-mixed/m-p/929669#M46321</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2024-05-25T06:49:31Z</dc:date>
    </item>
    <item>
      <title>Re: Output predicted slopes for each individual in proc mixed</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Output-predicted-slopes-for-each-individual-in-proc-mixed/m-p/930836#M46384</link>
      <description>&lt;P&gt;The SOLUTION option on the RANDOM statement gives you the random deviation of each individual's slope from the overall slope. The overall slope comes from the coefficient for HEIGHT given in the S option for the MODEL statement. To get individual slopes, combine the results of the S option on the RANDOM statement and the S option on the MODEL statement.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 04 Jun 2024 16:23:03 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Output-predicted-slopes-for-each-individual-in-proc-mixed/m-p/930836#M46384</guid>
      <dc:creator>StatsMan</dc:creator>
      <dc:date>2024-06-04T16:23:03Z</dc:date>
    </item>
    <item>
      <title>Re: Output predicted slopes for each individual in proc mixed</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Output-predicted-slopes-for-each-individual-in-proc-mixed/m-p/930843#M46385</link>
      <description>&lt;P&gt;The following usage note provides sample programs for obtaining subject-specific intercept and slope --&lt;/P&gt;
&lt;P&gt;&lt;A href="http://support.sas.com/kb/37109" target="_blank"&gt;http://support.sas.com/kb/37109&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;The following note shows how to plot these subject-specific models --&lt;/P&gt;
&lt;P&gt;&lt;A href="http://support.sas.com/kb/37110" target="_blank"&gt;http://support.sas.com/kb/37110&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Hope this helps,&lt;/P&gt;
&lt;P&gt;Jill&lt;/P&gt;</description>
      <pubDate>Tue, 04 Jun 2024 17:16:56 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Output-predicted-slopes-for-each-individual-in-proc-mixed/m-p/930843#M46385</guid>
      <dc:creator>jiltao</dc:creator>
      <dc:date>2024-06-04T17:16:56Z</dc:date>
    </item>
  </channel>
</rss>

