<?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: mixed proc in Statistical Procedures</title>
    <link>https://communities.sas.com/t5/Statistical-Procedures/mixed-proc/m-p/958734#M48015</link>
    <description>&lt;P&gt;There are lower and upper in the table&lt;/P&gt;</description>
    <pubDate>Fri, 07 Feb 2025 23:24:04 GMT</pubDate>
    <dc:creator>always-good</dc:creator>
    <dc:date>2025-02-07T23:24:04Z</dc:date>
    <item>
      <title>mixed proc</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/mixed-proc/m-p/956673#M47887</link>
      <description>&lt;P&gt;&lt;SPAN&gt;Hello everyone, When modeling with proc mixed in SAS studio,&amp;nbsp; in the Random effects builder, what is the difference when the variable in the model effects, is in the intercept box, subject effect (covariance structures), or group effect, please?&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 20 Jan 2025 16:00:52 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/mixed-proc/m-p/956673#M47887</guid>
      <dc:creator>always-good</dc:creator>
      <dc:date>2025-01-20T16:00:52Z</dc:date>
    </item>
    <item>
      <title>Re: mixed proc</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/mixed-proc/m-p/958707#M48013</link>
      <description>&lt;P&gt;The Random effect builder in SAS Studio does a lot! The best advice is to look at how the code changes as you add effects in different ways. The subject effect crosses the subject effect with all other random effects on that RANDOM statement. It will appear as the SUBJECT= effect on the RANDOM statement. The group effect causes the RANDOM statement to fit the random covariance parameters on this statement separately for each level of the group effect. It will appear as the GROUP= effect on the RANDOM statement.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 07 Feb 2025 20:42:58 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/mixed-proc/m-p/958707#M48013</guid>
      <dc:creator>StatsMan</dc:creator>
      <dc:date>2025-02-07T20:42:58Z</dc:date>
    </item>
    <item>
      <title>Re: mixed proc</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/mixed-proc/m-p/958733#M48014</link>
      <description>&lt;P&gt;Please explain how to interpret the output for a random effect. I mean, there is no probability of the effect like in the fixed effect, but there are covariance parameter estimates. How can I know if there is a significance? Thank you!&lt;/P&gt;</description>
      <pubDate>Fri, 07 Feb 2025 23:22:07 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/mixed-proc/m-p/958733#M48014</guid>
      <dc:creator>always-good</dc:creator>
      <dc:date>2025-02-07T23:22:07Z</dc:date>
    </item>
    <item>
      <title>Re: mixed proc</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/mixed-proc/m-p/958734#M48015</link>
      <description>&lt;P&gt;There are lower and upper in the table&lt;/P&gt;</description>
      <pubDate>Fri, 07 Feb 2025 23:24:04 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/mixed-proc/m-p/958734#M48015</guid>
      <dc:creator>always-good</dc:creator>
      <dc:date>2025-02-07T23:24:04Z</dc:date>
    </item>
    <item>
      <title>Re: mixed proc</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/mixed-proc/m-p/958744#M48016</link>
      <description>&lt;P&gt;"&lt;SPAN&gt;&amp;nbsp;how to interpret the output for a random effect."&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Just interpret random effect as fixed effect.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;"there is no probability of the effect like in the fixed effect,"&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;You can get estimated coefficient with SOLUTION= option.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;"How can I know if there is a significance?&amp;nbsp;"&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;You could use option COVTEST to check whether the random effect is significant or not.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc mixed data=sashelp.class covtest; /*option covtest check random effect is significant or not*/
class age;
model height=weight/solution ; /*option solution= get estimated coefficient of fixed effect*/
random int/subject=age solution; /*option solution= get estimated coefficient of  random effect */
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Ksharp_0-1738995552285.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/104497iA5E01364EACF7320/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Ksharp_0-1738995552285.png" alt="Ksharp_0-1738995552285.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Here random effect AGE got P value&amp;nbsp;0.2017 , which means AGE is NOT significant .You can use only Fixed effect in model.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Sat, 08 Feb 2025 06:21:15 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/mixed-proc/m-p/958744#M48016</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2025-02-08T06:21:15Z</dc:date>
    </item>
  </channel>
</rss>

