<?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: Interpreting PROC GLIMMIX output in Statistical Procedures</title>
    <link>https://communities.sas.com/t5/Statistical-Procedures/Interpreting-PROC-GLIMMIX-output/m-p/670616#M32030</link>
    <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/1708"&gt;@sld&lt;/a&gt;&amp;nbsp;.&amp;nbsp; Not a bit surprised by any of these models and results.&amp;nbsp; Overparameterization through inclusion of time as both a continuous and a categorical variable leads to problems, especially if/when time isn't really granular, resulting in a large number of categories for time_c.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I realize that I at first missed, and then continued to miss, that the variable 'time' was continuous.&amp;nbsp; I have done so many of these with time as a categorical variable that i made yet another mistake in the code.&amp;nbsp; Here is what I would do:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;/*Autoregressive residual:*/

proc glimmix data=wheat2;
    class variety time_c;
    model yield = time_c;
    random int / subject=variety; 
    random time_c / subject=variety type=ar(1) residual;
run;

/*Unstructured residual */
proc glimmix data=wheat2;
    class variety time_c;
    model yield = time_c;
    random time_c / subject=variety type=ar(1) residual;
run;
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Comparing AICC values for these two models to all of the previous, I find a substantial reduction(~451 vs ~473), indicating that the models with continuous time were roughly 0.000017 to&amp;nbsp; 0.00012 times as likely to retain the information in the data.when compared to models where time was considered categorical.&amp;nbsp; I haven't done the PROC AUTOREG work on the residuals, but it is likely that categorization with first-order autoregression results in a fit that is disrupted by also fitting time as a continuous variable.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If any one is looking for source material, see the technical appendix to Littell, Henry and Ammerman,&amp;nbsp;Statistical Analysis of Repeated Measures Data Using SAS Procedures, (1998). J. Anim. Sci.&amp;nbsp;76:1216–1231. Here is a non-paywall link&amp;nbsp;&lt;A href="https://pdfs.semanticscholar.org/7fd4/773cd2d11a0b4c842c1d1bf83b949697a9fa.pdf" target="_self"&gt;https://pdfs.semanticscholar.org/7fd4/773cd2d11a0b4c842c1d1bf83b949697a9fa.pdf&lt;/A&gt;&amp;nbsp;.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;SteveDenham&lt;/P&gt;</description>
    <pubDate>Mon, 20 Jul 2020 12:38:05 GMT</pubDate>
    <dc:creator>SteveDenham</dc:creator>
    <dc:date>2020-07-20T12:38:05Z</dc:date>
    <item>
      <title>Interpreting PROC GLIMMIX output</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Interpreting-PROC-GLIMMIX-output/m-p/668943#M31945</link>
      <description>&lt;P&gt;Hi, I have conducted a mixed model for longitudinal data using PROC GLIMMIX. The code I used is below:&lt;/P&gt;&lt;PRE&gt;proc glimmix data=diss method=laplace;
title Model 15: Total Support Final Model;
class carnegie (Ref='0') barrons (Ref='0') flagship(Ref='0');
EFFECT poly = polynomial(time/degree=2);
model totalsupport = 
poly carnegie barrons flagship statelog
poly*carnegie poly*flagship poly*statelog
poly*carnegie*statelog poly*flagship*statelog
/dist=gamma link=log solution;
random intercept time / type=ARH(1) subject = id;
run;&lt;/PRE&gt;&lt;P&gt;I had two questions about interpreting the output:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;As you can see, this is model uses a log link and the one continuous predictor is also transformed onto a log scale (statelog).&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;TABLE&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;&lt;P&gt;&lt;EM&gt;Solutions for Fixed Effects&lt;/EM&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;P&gt;&lt;EM&gt;Effect&lt;/EM&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;&lt;EM&gt;carnegie&lt;/EM&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;&lt;EM&gt;barrons&lt;/EM&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;&lt;EM&gt;flagship&lt;/EM&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;&lt;EM&gt;Estimate&lt;/EM&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;&lt;EM&gt;Standard&lt;BR /&gt;Error&lt;/EM&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;&lt;EM&gt;DF&lt;/EM&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;&lt;EM&gt;t&amp;nbsp;Value&lt;/EM&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;&lt;EM&gt;Pr &amp;gt; |t|&lt;/EM&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;P&gt;&lt;EM&gt;Intercept&lt;/EM&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;1.8144&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;0.6323&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;4661&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;2.87&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;0.0041&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;P&gt;&lt;EM&gt;time&lt;/EM&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;1.0161&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;0.1916&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;4661&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;5.30&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;&amp;lt;.0001&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;P&gt;&lt;EM&gt;time^2&lt;/EM&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;-0.04453&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;0.01360&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;4661&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;-3.27&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;0.0011&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;P&gt;&lt;EM&gt;carnegie&lt;/EM&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;1&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;-0.6513&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;0.09370&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;4661&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;-6.95&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;&amp;lt;.0001&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;P&gt;&lt;EM&gt;carnegie&lt;/EM&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;2&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;-0.5665&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;0.1611&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;4661&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;-3.52&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;0.0004&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;P&gt;&lt;EM&gt;carnegie&lt;/EM&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;0&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;0&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;.&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;.&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;.&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;.&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;P&gt;&lt;EM&gt;barrons&lt;/EM&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;1&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;0.3896&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;0.08327&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;4661&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;4.68&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;&amp;lt;.0001&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;P&gt;&lt;EM&gt;barrons&lt;/EM&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;2&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;-0.2169&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;0.09055&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;4661&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;-2.40&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;0.0166&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;P&gt;&lt;EM&gt;barrons&lt;/EM&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;0&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;0&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;.&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;.&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;.&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;.&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;P&gt;&lt;EM&gt;flagship&lt;/EM&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;1&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;-0.6884&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;0.1304&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;4661&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;-5.28&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;&amp;lt;.0001&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;P&gt;&lt;EM&gt;flagship&lt;/EM&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;0&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;0&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;.&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;.&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;.&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;.&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;P&gt;&lt;EM&gt;statelog&lt;/EM&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;1.5370&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;0.1524&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;4661&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;10.09&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;&amp;lt;.0001&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;P&gt;&lt;EM&gt;time*carnegie&lt;/EM&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;1&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;1.0983&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;0.1819&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;4661&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;6.04&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;&amp;lt;.0001&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;P&gt;&lt;EM&gt;time*carnegie&lt;/EM&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;2&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;-0.04387&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;0.2661&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;4661&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;-0.16&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;0.8691&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;P&gt;&lt;EM&gt;time*carnegie&lt;/EM&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;0&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;0&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;.&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;.&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;.&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;.&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;P&gt;&lt;EM&gt;time^2*carnegie&lt;/EM&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;1&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;-0.07228&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;0.01423&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;4661&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;-5.08&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;&amp;lt;.0001&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;P&gt;&lt;EM&gt;time^2*carnegie&lt;/EM&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;2&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;-0.01247&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;0.01982&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;4661&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;-0.63&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;0.5293&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;P&gt;&lt;EM&gt;time^2*carnegie&lt;/EM&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;0&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;0&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;.&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;.&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;.&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;.&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;P&gt;&lt;EM&gt;time*flagship&lt;/EM&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;1&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;-1.3081&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;0.2154&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;4661&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;-6.07&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;&amp;lt;.0001&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;P&gt;&lt;EM&gt;time*flagship&lt;/EM&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;0&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;0&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;.&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;.&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;.&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;.&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;P&gt;&lt;EM&gt;time^2*flagship&lt;/EM&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;1&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;0.08469&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;0.01663&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;4661&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;5.09&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;&amp;lt;.0001&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;P&gt;&lt;EM&gt;time^2*flagship&lt;/EM&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;0&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;0&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;.&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;.&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;.&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;.&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;P&gt;&lt;EM&gt;statelog*time&lt;/EM&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;-0.2541&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;0.04758&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;4661&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;-5.34&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;&amp;lt;.0001&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;P&gt;&lt;EM&gt;statelog*time^2&lt;/EM&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;0.01149&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;0.003387&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;4661&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;3.39&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;0.0007&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;P&gt;&lt;EM&gt;statelog*time*carnegie&lt;/EM&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;1&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;-0.2803&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;0.04672&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;4661&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;-6.00&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;&amp;lt;.0001&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;P&gt;&lt;EM&gt;statelog*time*carnegie&lt;/EM&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;2&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;0.01977&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;0.06687&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;4661&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;0.30&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;0.7675&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;P&gt;&lt;EM&gt;statelog*time*carnegie&lt;/EM&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;0&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;0&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;.&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;.&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;.&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;.&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;P&gt;&lt;EM&gt;statelog*time^2*carnegie&lt;/EM&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;1&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;0.01843&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;0.003647&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;4661&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;5.05&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;&amp;lt;.0001&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;P&gt;&lt;EM&gt;statelog*time^2*carnegie&lt;/EM&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;2&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;0.002585&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;0.004956&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;4661&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;0.52&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;0.6019&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;P&gt;&lt;EM&gt;statelog*time^2*carnegie&lt;/EM&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;0&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;0&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;.&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;.&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;.&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;.&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;P&gt;&lt;EM&gt;statelog*time*flagship&lt;/EM&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;1&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;0.3230&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;0.05414&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;4661&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;5.97&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;&amp;lt;.0001&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;P&gt;&lt;EM&gt;statelog*time*flagship&lt;/EM&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;0&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;0&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;.&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;.&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;.&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;.&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;P&gt;&lt;EM&gt;statelog*time^2*flagship&lt;/EM&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;1&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;-0.02112&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;0.004179&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;4661&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;-5.05&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;&amp;lt;.0001&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;P&gt;&lt;EM&gt;statelog*time^2*flagship&lt;/EM&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;0&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;0&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;.&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;.&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;.&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;.&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;My understanding is that I would interpret this as you would a linear regression model with logged outcome and logged predictor (% change in predictor would lead to a % change in outcome) so for:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;TABLE&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;&lt;P&gt;&lt;EM&gt;statelog&lt;/EM&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;1.5370&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;0.1524&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;4661&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;10.09&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;&amp;lt;.0001&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;As statelog increases 1.5370%, logged outcome would increase 1%.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;1) Is there a way to convert this data in PROC GLIMMIX so that I can just interpret as increase in statelog = increase in 1 unit of logged outcome. I read about using lsmeans and ilink but that just broke down my categorical predictors.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;2) I used an ARH(1) covariance structure for this but I'm unsure how to interpret it. I understand how to interpret the VC or UN but not ARH(1) as I've never had to use it before.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;TABLE&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;&lt;P&gt;&lt;EM&gt;Covariance Parameter Estimates&lt;/EM&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;P&gt;&lt;EM&gt;Cov Parm&lt;/EM&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;&lt;EM&gt;Subject&lt;/EM&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;&lt;EM&gt;Estimate&lt;/EM&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;&lt;EM&gt;Standard&lt;BR /&gt;Error&lt;/EM&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;P&gt;&lt;EM&gt;Var(1)&lt;/EM&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;id&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;0.5255&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;0.04765&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;P&gt;&lt;EM&gt;Var(2)&lt;/EM&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;id&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;0.001706&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;0.000193&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;P&gt;&lt;EM&gt;ARH(1)&lt;/EM&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;id&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;-0.4835&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;0.04940&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;P&gt;&lt;EM&gt;Residual&lt;/EM&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;0.1098&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;0.002474&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you!&lt;/P&gt;</description>
      <pubDate>Mon, 13 Jul 2020 19:33:13 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Interpreting-PROC-GLIMMIX-output/m-p/668943#M31945</guid>
      <dc:creator>Nerdcy</dc:creator>
      <dc:date>2020-07-13T19:33:13Z</dc:date>
    </item>
    <item>
      <title>Re: Interpreting PROC GLIMMIX output</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Interpreting-PROC-GLIMMIX-output/m-p/669204#M31951</link>
      <description>&lt;P&gt;Some things:&lt;/P&gt;
&lt;P&gt;You said:&lt;/P&gt;
&lt;P&gt;My understanding is that I would interpret this as you would a linear regression model with logged outcome and logged predictor (% change in predictor would lead to a % change in outcome) so for:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;TABLE&gt;
&lt;TBODY&gt;
&lt;TR&gt;
&lt;TD&gt;
&lt;P&gt;&lt;EM&gt;statelog&lt;/EM&gt;&lt;/P&gt;
&lt;/TD&gt;
&lt;TD&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;/TD&gt;
&lt;TD&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;/TD&gt;
&lt;TD&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;/TD&gt;
&lt;TD&gt;
&lt;P&gt;1.5370&lt;/P&gt;
&lt;/TD&gt;
&lt;TD&gt;
&lt;P&gt;0.1524&lt;/P&gt;
&lt;/TD&gt;
&lt;TD&gt;
&lt;P&gt;4661&lt;/P&gt;
&lt;/TD&gt;
&lt;TD&gt;
&lt;P&gt;10.09&lt;/P&gt;
&lt;/TD&gt;
&lt;TD&gt;
&lt;P&gt;&amp;lt;.0001&lt;/P&gt;
&lt;/TD&gt;
&lt;/TR&gt;
&lt;/TBODY&gt;
&lt;/TABLE&gt;
&lt;P&gt;As statelog increases 1.5370%, logged outcome would increase 1%.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;This should be interpreted the other way around, for a unit increase in statelog, you would get a 1.537 unit increase in the log outcome.&amp;nbsp; I wouldn't try to put this on a percentage basis in the log space, because it is something quite different in the probability space.&amp;nbsp; This may answer question 1.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;For question 2, a great source in the documentation are the matrix definitions of the various types.&amp;nbsp; For ARH(1), this looks like&lt;/P&gt;
&lt;DIV class="xis-refProc"&gt;
&lt;DIV id="statug.glimmix.gmxrandom" class="AAsection"&gt;
&lt;DIV class="AAoptions"&gt;
&lt;DL class="AAoptions"&gt;
&lt;DD&gt;
&lt;DIV class="AAoptions"&gt;
&lt;DL class="AAoptions"&gt;
&lt;DT&gt;&lt;SPAN class=" AAterm "&gt;ARH(1) &lt;/SPAN&gt;&lt;/DT&gt;
&lt;DD&gt;
&lt;P&gt;specifies a heterogeneous first-order autoregressive structure,&lt;/P&gt;
&lt;DIV&gt;
&lt;DIV class="AAmathobject"&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;P&gt;with cov(zeta_i, zeta_j) = sqrt (sigmasquared_i * sigmasquared_j)* rho ^ abs(i - j). The documentation has this in LaTeX formula that doesn't copy well.&lt;/P&gt;
&lt;DIV id="tinyMceEditorSteveDenham_1" class="mceNonEditable lia-copypaste-placeholder"&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;P&gt;. This covariance structure has the same correlation pattern as the TYPE=AR(1) structure, but the variances are allowed to differ,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;So in your example, you have two time points.&amp;nbsp; The first is associated with Var(1) and the second with Var(2), and the correlation is associated with ARH(1).&amp;nbsp; Now, with only two time points, the ARH(1) is equivalent to the unstructured (UN) or the heterogeneous compound symmetry (CSH) structures - it is just a different parameterization. Since these are G-side parameters, they are the variances at the first time point, second time point and correlation between the observed values.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Hope this is relatively understandable.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;SteveDenham&lt;/P&gt;
&lt;/DD&gt;
&lt;/DL&gt;
&lt;/DIV&gt;
&lt;/DD&gt;
&lt;/DL&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;</description>
      <pubDate>Tue, 14 Jul 2020 15:49:29 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Interpreting-PROC-GLIMMIX-output/m-p/669204#M31951</guid>
      <dc:creator>SteveDenham</dc:creator>
      <dc:date>2020-07-14T15:49:29Z</dc:date>
    </item>
    <item>
      <title>Re: Interpreting PROC GLIMMIX output</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Interpreting-PROC-GLIMMIX-output/m-p/669520#M31967</link>
      <description>&lt;P&gt;Thank you! This was very helpful. I guess I just had one more question. I was told that one of the reasons to choose a glmm with link function instead of transforming the outcome variable and using a lmm is that you can easily back transform the data so that I'm not interpreting the change in log but the change in the original raw form of the variable. How do I do this in glimmmix?&lt;/P&gt;</description>
      <pubDate>Wed, 15 Jul 2020 15:37:37 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Interpreting-PROC-GLIMMIX-output/m-p/669520#M31967</guid>
      <dc:creator>Nerdcy</dc:creator>
      <dc:date>2020-07-15T15:37:37Z</dc:date>
    </item>
    <item>
      <title>Re: Interpreting PROC GLIMMIX output</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Interpreting-PROC-GLIMMIX-output/m-p/669596#M31970</link>
      <description>&lt;P&gt;To stir the pot a bit:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I do not think that the RANDOM statement is correctly specified&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;random intercept time / type=ARH(1) subject = id;
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;This statement estimates random intercepts for subjects (&lt;EM&gt;id&lt;/EM&gt;). We generally consider subjects to be independent; it is implausible that subjects would be temporally autocorrelated.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;EM&gt;time&lt;/EM&gt; is not in the CLASS statement, so it is incorporated in the model as a continuous variable. Consequently, this RANDOM statement is attempting to estimate random slopes of the regression of the response on time. I think it is implausible to assume temporal autocorrelation here either.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Your ability to model covariance structure for residuals in a non-normal GLMM is limited, or even non-existent, as I understand it.&lt;/P&gt;
&lt;P&gt;A LMM has a residual variance, but although a GLMM has residuals, it does not have a residual variance because the mean and variance of non-normal distributions are defined by the same parameters so it is not possible to estimate both.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I do not know enough about your study design (for example, are covariates subject-specific or time-varying?) but I'll suggest the following code for a random coefficients model:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;random intercept time time*time / subject = id;
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you really wanted to incorporate temporal autocorrelation, you could considering using &lt;EM&gt;log(totalsupport)&lt;/EM&gt; in a LMM assuming a normal distribution. This is &lt;EM&gt;not&lt;/EM&gt; the same model as a GLMM with a gamma distribution with a log link, but it might be "good enough", or it might not:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;class ... c_time; /* a categorical version of time */
c_time = time;
...
random intercept time time*time / subject = id;
random c_time / subject=id type=ar(1) residual;
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;You might find this paper by SAS's Kathleen Kiernan useful: &lt;A href="https://www.sas.com/content/dam/SAS/support/en/sas-global-forum-proceedings/2018/2179-2018.pdf" target="_self"&gt;Insights into Using the GLIMMIX Procedure to Model Categorical Outcomes with Random Effects&lt;/A&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 15 Jul 2020 17:11:06 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Interpreting-PROC-GLIMMIX-output/m-p/669596#M31970</guid>
      <dc:creator>sld</dc:creator>
      <dc:date>2020-07-15T17:11:06Z</dc:date>
    </item>
    <item>
      <title>Re: Interpreting PROC GLIMMIX output</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Interpreting-PROC-GLIMMIX-output/m-p/669597#M31971</link>
      <description>&lt;P&gt;Use the &lt;EM&gt;ilink&lt;/EM&gt; option.&lt;/P&gt;</description>
      <pubDate>Wed, 15 Jul 2020 17:13:46 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Interpreting-PROC-GLIMMIX-output/m-p/669597#M31971</guid>
      <dc:creator>sld</dc:creator>
      <dc:date>2020-07-15T17:13:46Z</dc:date>
    </item>
    <item>
      <title>Re: Interpreting PROC GLIMMIX output</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Interpreting-PROC-GLIMMIX-output/m-p/669602#M31972</link>
      <description>&lt;P&gt;I've been reading about it and I believe you're correct. I guess the question is how do I code&amp;nbsp;&lt;EM&gt;ilink.&amp;nbsp;&lt;/EM&gt;I want the exact output I have just with the estimates using the raw scale not log link. I've read about using estimate or lsmeans but that just seems to partition out my categorical variables instead of providing the same table I put above with the new estimates.&lt;/P&gt;</description>
      <pubDate>Wed, 15 Jul 2020 17:19:19 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Interpreting-PROC-GLIMMIX-output/m-p/669602#M31972</guid>
      <dc:creator>Nerdcy</dc:creator>
      <dc:date>2020-07-15T17:19:19Z</dc:date>
    </item>
    <item>
      <title>Re: Interpreting PROC GLIMMIX output</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Interpreting-PROC-GLIMMIX-output/m-p/669604#M31973</link>
      <description>&lt;P&gt;My random statement is correct. I am using a random coefficients model to do a growth curve analysis so the random intercept shows that the subjects vary in starting point and random time shows varying slopes (growth) over time. Because it is longitudinal data, there is expected autocorrelation and heteroscedasticity making ARH(1) the right covariance structure.&lt;/P&gt;</description>
      <pubDate>Wed, 15 Jul 2020 17:21:20 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Interpreting-PROC-GLIMMIX-output/m-p/669604#M31973</guid>
      <dc:creator>Nerdcy</dc:creator>
      <dc:date>2020-07-15T17:21:20Z</dc:date>
    </item>
    <item>
      <title>Re: Interpreting PROC GLIMMIX output</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Interpreting-PROC-GLIMMIX-output/m-p/669617#M31978</link>
      <description>&lt;P&gt;As you note, you can inverse link estimates of means and predictions. However, you cannot inverse link parameter estimates (I presume that's the table you are referring to). In a GLMM, all the estimates and statistical tests are done on the link scale.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You might find Ben Bolker's response here helpful: &lt;A href="https://stats.stackexchange.com/questions/431120/how-to-interpret-parameters-of-glm-output-with-gamma-log-link" target="_self"&gt;https://stats.stackexchange.com/questions/431120/how-to-interpret-parameters-of-glm-output-with-gamma-log-link&lt;/A&gt; ; you'll find additional discussions with an internet search.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 15 Jul 2020 17:41:20 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Interpreting-PROC-GLIMMIX-output/m-p/669617#M31978</guid>
      <dc:creator>sld</dc:creator>
      <dc:date>2020-07-15T17:41:20Z</dc:date>
    </item>
    <item>
      <title>Re: Interpreting PROC GLIMMIX output</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Interpreting-PROC-GLIMMIX-output/m-p/669623#M31979</link>
      <description>&lt;P&gt;Actually, if you want a random intercept and a random slopes model, you would have 2 RANDOM statements, like this:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;random intercept/subject=id;  /* This gives the random intercept variance component */
random time/type=arh(1) subject=id;  /* And this gives the random slopes variance components * /&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;If you have sufficient data, this should work (converges and G matrix is positive definite), but if not, consider this:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;random time/subject=id type=chol;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;In this case, no specific random intercept is modeled, as it is inseparable from the unstructured (using a Cholesky factorization) covariance structure.&amp;nbsp; If you add in that second random statement as above for the random intercept, you will always get a message in the output that the G matrix is not positive definite.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I knew there was something else.&amp;nbsp; Because you used the EFFECT option to get the polynomial with degree 2, the variance components Var(1) and Var(2) refer to the linear and quadratic parts (that's why you can get away with a type= option that is based on categorical values for time).&amp;nbsp; If you use&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/1708"&gt;@sld&lt;/a&gt;&amp;nbsp;'s suggestion of&amp;nbsp;&lt;/P&gt;
&lt;PRE class="language-sas"&gt;&lt;CODE&gt;random intercept time time*time / subject = id;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;you should get similar estimates except that you will not have an estimate of the correlation between linear and quadratic time.&amp;nbsp; At least that is what I think happened in my toy example I was testing things on (stress the part about I think).&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;SteveDenham.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 15 Jul 2020 18:01:31 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Interpreting-PROC-GLIMMIX-output/m-p/669623#M31979</guid>
      <dc:creator>SteveDenham</dc:creator>
      <dc:date>2020-07-15T18:01:31Z</dc:date>
    </item>
    <item>
      <title>Re: Interpreting PROC GLIMMIX output</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Interpreting-PROC-GLIMMIX-output/m-p/669624#M31980</link>
      <description>&lt;P&gt;Thank you! I just thought there was some way to automatically get the exponential but it looks like I'll just have to calculate that manually.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 15 Jul 2020 17:49:03 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Interpreting-PROC-GLIMMIX-output/m-p/669624#M31980</guid>
      <dc:creator>Nerdcy</dc:creator>
      <dc:date>2020-07-15T17:49:03Z</dc:date>
    </item>
    <item>
      <title>Re: Interpreting PROC GLIMMIX output</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Interpreting-PROC-GLIMMIX-output/m-p/669631#M31981</link>
      <description>&lt;P&gt;Thank you!&lt;/P&gt;</description>
      <pubDate>Wed, 15 Jul 2020 17:56:50 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Interpreting-PROC-GLIMMIX-output/m-p/669631#M31981</guid>
      <dc:creator>Nerdcy</dc:creator>
      <dc:date>2020-07-15T17:56:50Z</dc:date>
    </item>
    <item>
      <title>Re: Interpreting PROC GLIMMIX output</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Interpreting-PROC-GLIMMIX-output/m-p/669634#M31982</link>
      <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/15363"&gt;@SteveDenham&lt;/a&gt; I'm good with your first RANDOM statement. I disagree with the second: I do not see why there would be temporal autocorrelation among the subject random effects. If intercepts for subjects are independent (as in the first RANDOM), would not their random effects for linear slopes also be independent?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I'm not sure what the default type is, but for sure you would get covariances among intercepts, linear and quadratic terms with&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;random intercept time time*time / subject = id type=chol;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;or &lt;EM&gt;type=un&lt;/EM&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;EM&gt;Edit: &lt;/EM&gt;I might agree with your interpretation of the two reported variance components Var(1) and Var(2) if &lt;EM&gt;poly&lt;/EM&gt; (the name of the polynomial effect) replaced &lt;EM&gt;time&lt;/EM&gt; in the RANDOM statement. But I still don't like this use of ARH(1).&lt;BR /&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 15 Jul 2020 18:11:22 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Interpreting-PROC-GLIMMIX-output/m-p/669634#M31982</guid>
      <dc:creator>sld</dc:creator>
      <dc:date>2020-07-15T18:11:22Z</dc:date>
    </item>
    <item>
      <title>Re: Interpreting PROC GLIMMIX output</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Interpreting-PROC-GLIMMIX-output/m-p/669637#M31983</link>
      <description>&lt;P&gt;Yes, I've been thinking about this. My understanding of the autocorrelation in my data is that responses closer together in time would be more closely related to each other than those farther apart in time (outcome is a dollar amount; for example - the amount received in year 10 is related to the amount received in year 9, but not as related to the amount received in year 2).&lt;/P&gt;</description>
      <pubDate>Wed, 15 Jul 2020 18:13:30 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Interpreting-PROC-GLIMMIX-output/m-p/669637#M31983</guid>
      <dc:creator>Nerdcy</dc:creator>
      <dc:date>2020-07-15T18:13:30Z</dc:date>
    </item>
    <item>
      <title>Re: Interpreting PROC GLIMMIX output</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Interpreting-PROC-GLIMMIX-output/m-p/669656#M31986</link>
      <description>&lt;P&gt;Temporal autocorrelation is certainly possible. The structure of the autocorrelation might be well captured by AR(1), or other covariance structures might fit the data better (e.g., CS or TOEP, heterogeneous variances versions; or UN).&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;We might think of the &lt;EM&gt;responses&lt;/EM&gt; as being correlated, but in a design with repeated measures on subjects, we apply these covariance structures to the &lt;EM&gt;residuals&lt;/EM&gt; (R-side random effects)--what's left after the MODEL removes the fixed effect trend of time.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;See &lt;A href="https://documentation.sas.com/?docsetId=statug&amp;amp;docsetTarget=statug_glimmix_overview05.htm&amp;amp;docsetVersion=15.1&amp;amp;locale=en" target="_self"&gt;G-Side and R-Side Random Effects and Covariance Structures&lt;/A&gt;&amp;nbsp; This bit of documentation does suggest that you can do R-side modeling in GLMM; you could try it and see if it worked.&lt;/P&gt;</description>
      <pubDate>Wed, 15 Jul 2020 19:03:00 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Interpreting-PROC-GLIMMIX-output/m-p/669656#M31986</guid>
      <dc:creator>sld</dc:creator>
      <dc:date>2020-07-15T19:03:00Z</dc:date>
    </item>
    <item>
      <title>Re: Interpreting PROC GLIMMIX output</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Interpreting-PROC-GLIMMIX-output/m-p/669692#M31987</link>
      <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/1708"&gt;@sld&lt;/a&gt;&amp;nbsp;: Regarding your concern about this set of random statements&lt;/P&gt;
&lt;LI-CODE lang="sas"&gt;random intercept/subject=id;  /* This gives the random intercept variance component */
random time/type=arh(1) subject=id;  /* And this gives the random slopes variance components * /&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;and that the second implies independent slopes by subject, I wonder.&amp;nbsp; I have often used this pair of statements to model autoregressive types of covariance structures, especially R-side (with the residual option in the second statement).&amp;nbsp; A good reference on this would be pages 431 and 432 in Walt Stroup's&amp;nbsp;&lt;EM&gt;Generalized Linear Mixed Models&lt;/EM&gt;&lt;EM&gt;,&amp;nbsp;&lt;/EM&gt;where he presents this particular approach for a GLMM.&amp;nbsp; Theoretical concepts regarding this are covered in section 14.5.1..&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I have to admit I am a bit baffled by the behavior.of the type=ARH(1) but by playing a bit with the dataset in Example: Comparing Multiple B-splines, I am now pretty clear as to what was going on.&lt;/P&gt;
&lt;P&gt;1. The RANDOM statement: RANDOM int time/type=ARH(1) sub=id; returns two variance components one for id and one for time and a correlation between them, which makes no sense as you pointed out.&lt;/P&gt;
&lt;P&gt;2. Two RANDOM statements as I outlined will work, but oddly the default ddfm is Kenward Rogers. Between within returns 0 denominator degrees of freedom for the polynomial terms.&lt;/P&gt;
&lt;P&gt;3. You cannot include an effect variable in a RANDOM statement. You get this error: ERROR: Separated or split RANDOM effects are not supported by the GLIMMIX procedure.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;So I definitely learned some things this afternoon.&amp;nbsp; Thanks to all of you.&lt;BR /&gt;. .&lt;/P&gt;
&lt;P&gt;SteveDenham&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;My code (the dataset spline can be found in the examples):&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data test;
set spline;
if _n_ &amp;lt;=25 then grp = 1;
if 26 =&amp;lt; _n_ &amp;lt;=50 then grp=2;
if 51 =&amp;lt; _n_ &amp;lt;=75 then grp=3;
if _n_ &amp;gt;= 76 then grp=4;
run;

proc glimmix data=test;
class group grp;
effect poly=polynomial(x/ degree=3);
effect spl=spline(x);
model y =group poly group*poly/noint;
random int x/type=chol subject=grp;
run;

proc glimmix data=test;
class group grp;
effect poly=polynomial(x/ degree=3);
effect spl=spline(x);
model y =group poly group*poly/noint ;
random int/suject=grp;
random x/type=arh(1) subject=grp;
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 15 Jul 2020 20:03:12 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Interpreting-PROC-GLIMMIX-output/m-p/669692#M31987</guid>
      <dc:creator>SteveDenham</dc:creator>
      <dc:date>2020-07-15T20:03:12Z</dc:date>
    </item>
    <item>
      <title>Re: Interpreting PROC GLIMMIX output</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Interpreting-PROC-GLIMMIX-output/m-p/670048#M31998</link>
      <description>&lt;P&gt;Like &lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/15363"&gt;@SteveDenham&lt;/a&gt;&amp;nbsp;, I played around with code that I thought was pertinent, and I’ll share my new vision with you. The code is attached. Ideally I would take the time to simulate data that would support a full modeling effort—something with random intercepts and random slopes and autocorrelation—but I just don’t have the time for that currently.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The code file includes some comments. I will not go into model comparisons in depth here; you can embark upon your own discovery.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The first three models, which differ only in type—CHOL, UN, or ARH(1)—are re-parameterizations of the &lt;EM&gt;exact&lt;/EM&gt; &lt;EM&gt;same statistical model&lt;/EM&gt; which estimates in different forms (i.e., different parameterizations) the variance among intercepts, the variance among slopes, and the covariance of intercepts and slopes. Clearly &lt;EM&gt;none of these models is modeling temporal autocorrelation of residuals&lt;/EM&gt;.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;So my first point is that &lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/336514"&gt;@Nerdcy&lt;/a&gt;'s&amp;nbsp; RANDOM statement is &lt;EM&gt;definitely&lt;/EM&gt; not doing what the OP thinks it is or may want.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;My second point is less definitive at the moment. I experimented with models that were intended to model the covariance structure of residuals from the regression of the response on time. My example dataset is not at all sufficient to assess these models adequately. But patterns emerged that are consistent with my mixed model experience: when you have both G-side and R-side random effects, some model formulations that might seem sensible will be over-parameterized. Refer to the Littell et al. reference in the code.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;My third point is that this code exploration is based on models that assume a normal distribution for the residuals. Theoretically, you ought to be able to model autocorrelation of those residuals if you have enough data that are well-enough behaved. However, for a generalized linear mixed model, the ability to model R-side random effects (i.e., the covariance structure of residuals) may be limited or (as I understand it) non-existent. In the context of a random coefficients model, I don’t know that that’s a major deal breaker because you are focusing your attention on the variances among intercepts and slopes, which are subject-level statistics.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;My fourth point is that these are complicated models. Both Steve and I have experience with mixed models, and we are still discovering things we didn’t know. Just because a model runs, you should not assume it is valid. And it is easy to under-estimate the intricacies of these models.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 17 Jul 2020 04:18:18 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Interpreting-PROC-GLIMMIX-output/m-p/670048#M31998</guid>
      <dc:creator>sld</dc:creator>
      <dc:date>2020-07-17T04:18:18Z</dc:date>
    </item>
    <item>
      <title>Re: Interpreting PROC GLIMMIX output</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Interpreting-PROC-GLIMMIX-output/m-p/670117#M32004</link>
      <description>&lt;P&gt;Thank you. You've given me a lot to think about. I'm going to take another look at my data.&lt;/P&gt;</description>
      <pubDate>Fri, 17 Jul 2020 13:19:16 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Interpreting-PROC-GLIMMIX-output/m-p/670117#M32004</guid>
      <dc:creator>Nerdcy</dc:creator>
      <dc:date>2020-07-17T13:19:16Z</dc:date>
    </item>
    <item>
      <title>Re: Interpreting PROC GLIMMIX output</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Interpreting-PROC-GLIMMIX-output/m-p/670616#M32030</link>
      <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/1708"&gt;@sld&lt;/a&gt;&amp;nbsp;.&amp;nbsp; Not a bit surprised by any of these models and results.&amp;nbsp; Overparameterization through inclusion of time as both a continuous and a categorical variable leads to problems, especially if/when time isn't really granular, resulting in a large number of categories for time_c.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I realize that I at first missed, and then continued to miss, that the variable 'time' was continuous.&amp;nbsp; I have done so many of these with time as a categorical variable that i made yet another mistake in the code.&amp;nbsp; Here is what I would do:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;/*Autoregressive residual:*/

proc glimmix data=wheat2;
    class variety time_c;
    model yield = time_c;
    random int / subject=variety; 
    random time_c / subject=variety type=ar(1) residual;
run;

/*Unstructured residual */
proc glimmix data=wheat2;
    class variety time_c;
    model yield = time_c;
    random time_c / subject=variety type=ar(1) residual;
run;
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Comparing AICC values for these two models to all of the previous, I find a substantial reduction(~451 vs ~473), indicating that the models with continuous time were roughly 0.000017 to&amp;nbsp; 0.00012 times as likely to retain the information in the data.when compared to models where time was considered categorical.&amp;nbsp; I haven't done the PROC AUTOREG work on the residuals, but it is likely that categorization with first-order autoregression results in a fit that is disrupted by also fitting time as a continuous variable.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If any one is looking for source material, see the technical appendix to Littell, Henry and Ammerman,&amp;nbsp;Statistical Analysis of Repeated Measures Data Using SAS Procedures, (1998). J. Anim. Sci.&amp;nbsp;76:1216–1231. Here is a non-paywall link&amp;nbsp;&lt;A href="https://pdfs.semanticscholar.org/7fd4/773cd2d11a0b4c842c1d1bf83b949697a9fa.pdf" target="_self"&gt;https://pdfs.semanticscholar.org/7fd4/773cd2d11a0b4c842c1d1bf83b949697a9fa.pdf&lt;/A&gt;&amp;nbsp;.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;SteveDenham&lt;/P&gt;</description>
      <pubDate>Mon, 20 Jul 2020 12:38:05 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Interpreting-PROC-GLIMMIX-output/m-p/670616#M32030</guid>
      <dc:creator>SteveDenham</dc:creator>
      <dc:date>2020-07-20T12:38:05Z</dc:date>
    </item>
    <item>
      <title>Re: Interpreting PROC GLIMMIX output</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Interpreting-PROC-GLIMMIX-output/m-p/670876#M32058</link>
      <description>&lt;P&gt;My first point is that the over-parameterization that I noted is due to overlap/redundancy in parameterization of the RANDOM and REPEATED statements in Proc MIXED (and equivalently, in the RANDOM and RANDOM/RESIDUAL statements in Proc GLIMMIX) for certain--actually most--covariance structures. This issue is addressed in the appendix of the link to the Littell, Henry and Ammerman (1998) that &lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/15363"&gt;@SteveDenham&lt;/a&gt;&amp;nbsp;provides. It is also addressed in the Littell, Pendergast &amp;amp; Natajaran (Statistics in Medicine, 2000) paper I referenced in the code I posted previously. In this latter paper, the authors note the distinction between an AR(1) structure and an AR(1)+RE structure, as does Walt Stroup (Generalized Linear Mixed Models (2013)) in Ch 14 (Fig 14.2 does not correctly illustrate the different structures, IMO). &lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;My second point about whether we can model R-side covariance structures is addressed by Stroup in his text on p 435, where he writes&lt;/P&gt;
&lt;P&gt;"The primary ambiguity in repeated measures model building for non-Gaussian data occurs when we have a member of the two-parameter exponential family [&lt;EM&gt;e.g., gamma&lt;/EM&gt;]. How do we model repeated measures for beta or negative binomial or other distributions in this family? .... For G-side models, it is not clear how the random &lt;EM&gt;ts(a)_ijk&lt;/EM&gt; [&lt;EM&gt;i.e., time x subject(treatment) random effects&lt;/EM&gt;] effect coexists with &lt;EM&gt;f(y|b)&lt;/EM&gt;'s scale parameters."&lt;/P&gt;
&lt;P&gt;In the 10 years or so since Walt wrote his text, he has continued to revisit issues. For example, he and Elizabeth Claassen published a paper in the &lt;EM&gt;Journal of Agricultural, Biological, and Environmental Statistics&lt;/EM&gt; just last month (&lt;A href="https://doi.org/10.1007/s13253-020-00402-6" target="_blank"&gt;https://doi.org/10.1007/s13253-020-00402-6&lt;/A&gt;) entitled "Pseudo-Likelihood or Quadrature? What We Thought We Knew, What We Think We Know,&lt;BR /&gt;and What We Are Still Trying to Figure Out". So he may currently hold a different view about R-side covariance structure modelling with non-Gaussian distributions. Then again, he just retired and could be on to other things &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;My third observation is that a random coefficients model (RCM) with time continuous will be quite different from a model with time categorical.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;My fourth observation is that although UN, CHOL, and ARH(1) are identical when you are modeling a RCM with random intercepts, random slopes, and one covariance (i.e., a 2 x 2 matrix), you would not want to apply an AR constraint on covariances in a covariance matrix that was larger than 2 x 2 because that would be silly. I'd stick with UN or CHOL, or in my practice VC (or UN(1)) because my datasets are always small, and I have never been able to fit a decent intercept-slope covariance.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Mathematical statistics is not my superpower; my explorations tend to be empirical. My practical experience is consistent with the point that Walt makes in his text, and with the Littell et al. papers.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 21 Jul 2020 05:06:34 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Interpreting-PROC-GLIMMIX-output/m-p/670876#M32058</guid>
      <dc:creator>sld</dc:creator>
      <dc:date>2020-07-21T05:06:34Z</dc:date>
    </item>
  </channel>
</rss>

