<?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 Determining if Random Effects are Significant in Proc Glimmix in Statistical Procedures</title>
    <link>https://communities.sas.com/t5/Statistical-Procedures/Determining-if-Random-Effects-are-Significant-in-Proc-Glimmix/m-p/532582#M26845</link>
    <description>&lt;P&gt;Hi all,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am used to working in proc mixed and using the option covtest in the first line to get Z and p-values of covariance parameter estimates (because I have a random effect that I only leave in if it is significant). For one of my variables, I had to move to proc glimmix because I needed to do a median split on the data and assess it using a binary distribution model. However, I can't seem to figure out how to get the same Z and p-value outputs for the covariance parameter estimates table. Is there a way to do that? I've read the literature on covtest in glimmix, but none of the options give output on individual random effects (only all random effects as a whole). This is the sas code I am using currently:&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc glimmix data=BL_SRms ;
class condition time Subject_ID;
model il6Median_Split(event='1')=condition time condition*time / dist=binary;
random Subject_ID Condition(Subject_ID);
random condition / subject=Subject_ID*time residual;
covtest diagg;
run;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;What I want is something like this:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-center" image-alt="Screen Shot 2019-02-04 at 10.18.30 .png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/26827i746A6DEB005EC78D/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Screen Shot 2019-02-04 at 10.18.30 .png" alt="Screen Shot 2019-02-04 at 10.18.30 .png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;Right now, proc Glimmix is only giving me a table with the estimate and standard error. I want the z value and p-test too.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Other information that may or may not be relevant: I am using SAS University Edition.&lt;/P&gt;</description>
    <pubDate>Mon, 04 Feb 2019 15:20:22 GMT</pubDate>
    <dc:creator>ksn999</dc:creator>
    <dc:date>2019-02-04T15:20:22Z</dc:date>
    <item>
      <title>Determining if Random Effects are Significant in Proc Glimmix</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Determining-if-Random-Effects-are-Significant-in-Proc-Glimmix/m-p/532582#M26845</link>
      <description>&lt;P&gt;Hi all,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am used to working in proc mixed and using the option covtest in the first line to get Z and p-values of covariance parameter estimates (because I have a random effect that I only leave in if it is significant). For one of my variables, I had to move to proc glimmix because I needed to do a median split on the data and assess it using a binary distribution model. However, I can't seem to figure out how to get the same Z and p-value outputs for the covariance parameter estimates table. Is there a way to do that? I've read the literature on covtest in glimmix, but none of the options give output on individual random effects (only all random effects as a whole). This is the sas code I am using currently:&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc glimmix data=BL_SRms ;
class condition time Subject_ID;
model il6Median_Split(event='1')=condition time condition*time / dist=binary;
random Subject_ID Condition(Subject_ID);
random condition / subject=Subject_ID*time residual;
covtest diagg;
run;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;What I want is something like this:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-center" image-alt="Screen Shot 2019-02-04 at 10.18.30 .png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/26827i746A6DEB005EC78D/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Screen Shot 2019-02-04 at 10.18.30 .png" alt="Screen Shot 2019-02-04 at 10.18.30 .png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;Right now, proc Glimmix is only giving me a table with the estimate and standard error. I want the z value and p-test too.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Other information that may or may not be relevant: I am using SAS University Edition.&lt;/P&gt;</description>
      <pubDate>Mon, 04 Feb 2019 15:20:22 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Determining-if-Random-Effects-are-Significant-in-Proc-Glimmix/m-p/532582#M26845</guid>
      <dc:creator>ksn999</dc:creator>
      <dc:date>2019-02-04T15:20:22Z</dc:date>
    </item>
    <item>
      <title>Re: Determining if Random Effects are Significant in Proc Glimmix</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Determining-if-Random-Effects-are-Significant-in-Proc-Glimmix/m-p/533595#M26868</link>
      <description>&lt;P&gt;The WALD option on the COVTEST statement might do what you want.&amp;nbsp; Try&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp;covtest / wald;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;That will match the results you would see from MIXED (using COVTEST option) if your model had normal errors.&amp;nbsp;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 07 Feb 2019 14:35:38 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Determining-if-Random-Effects-are-Significant-in-Proc-Glimmix/m-p/533595#M26868</guid>
      <dc:creator>StatsMan</dc:creator>
      <dc:date>2019-02-07T14:35:38Z</dc:date>
    </item>
  </channel>
</rss>

