<?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: GLIMMIX 0 Standard Error Infinity t value in Statistical Procedures</title>
    <link>https://communities.sas.com/t5/Statistical-Procedures/GLIMMIX-0-Standard-Error-Infinity-t-value/m-p/667244#M31822</link>
    <description>&lt;P&gt;In addition to all that&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/1708"&gt;@sld&lt;/a&gt;&amp;nbsp;and&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/10892"&gt;@PaigeMiller&lt;/a&gt;&amp;nbsp; offered, I will suggest some other ideas to consider - your subject is id.&amp;nbsp; Be sure this is numeric for all subjects, and it wouldn't hurt to sort the dataset by id, as it is not in the CLASS statement. Next, your model cries out for the use of the EFFECT statement.&amp;nbsp; If you added this:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;EFFECT poly = polynomial(time/degree=2);&lt;/P&gt;
&lt;P&gt;and changed the MODEL statement to:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;model totalsupport =
poly carnegie barrons flagship stateGMC unemploymentGMC disposableGMC
poly*carnegie poly*barrons poly*flagship poly*stateGMC poly*unemploymentGMC poly*disposableGMC
poly*carnegie*stateGMC poly*barrons*stateGMC poly*flagship*stateGMC poly*unemploymentGMC*stateGMC poly*disposableGMC*stateGMC
/dist=Gamma link=log solution;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;you would automatically center and scale time and time*time. I would really consider dropping the last line of effects in the MODEL statement (although that is a preference from biology, not economics). Multi-dimensional response surfaces are often indistinguishable from noise, and suffer from interpretability.&amp;nbsp; For instance, suppose the time*time*carnegie*stateGMC is significant.&amp;nbsp; What does that mean?&amp;nbsp; Oh, and how many levels do carnegie, barrons and flagship have?&amp;nbsp; If each is a binary, consider creating a catch-all variable (call it source for now), such that source has 3 levels -'Carnegie', 'Barrons' and 'Flagship'.&amp;nbsp; If that is the case your model statement would become:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;model totalsupport =
poly source stateGMC unemploymentGMC disposableGMC
poly*source poly*stateGMC poly*unemploymentGMC poly*disposableGMC
poly*source*stateGMC poly*unemploymentGMC*stateGMC poly*disposableGMC*stateGMC
/dist=Gamma link=log solution;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Just some thoughts.&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;</description>
    <pubDate>Mon, 06 Jul 2020 17:24:10 GMT</pubDate>
    <dc:creator>SteveDenham</dc:creator>
    <dc:date>2020-07-06T17:24:10Z</dc:date>
    <item>
      <title>GLIMMIX 0 Standard Error Infinity t value</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/GLIMMIX-0-Standard-Error-Infinity-t-value/m-p/666965#M31799</link>
      <description>&lt;P&gt;Hi everyone,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'm running into some issue with my data. I'm using GLIMMIX to model a growth curve analysis on longitudinal data. My code is below:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;proc glimmix data=diss method = LAPLACE;&lt;BR /&gt;title Total Support Conditional Growth Model;&lt;BR /&gt;class carnegie (Ref='0') barrons (Ref='0')flagship(Ref='0');&lt;BR /&gt;model totalsupport =&lt;BR /&gt;time time*time carnegie barrons flagship stateGMC unemploymentGMC disposableGMC&lt;BR /&gt;time*carnegie time*barrons time*flagship time*stateGMC time*unemploymentGMC time*disposableGMC&lt;BR /&gt;time*time*carnegie time*time*barrons time*time*flagship time*time*stateGMC time*time*unemploymentGMC time*time*disposableGMC&lt;BR /&gt;time*carnegie*stateGMC time*barrons*stateGMC time*flagship*stateGMC time*unemploymentGMC*stateGMC time*disposableGMC*stateGMC&lt;BR /&gt;time*time*carnegie*stateGMC time*time*barrons*stateGMC time*time*flagship*stateGMC time*time*unemploymentGMC*stateGMC time*time*disposableGMC*stateGMC&lt;BR /&gt;/dist=Gamma link=log solution;&lt;BR /&gt;random intercept time / type=AR(1) subject = id;&lt;BR /&gt;covtest/Wald;&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;A sample of my output looks like this:&lt;/P&gt;&lt;DIV class="branch"&gt;&lt;DIV align="center"&gt;&lt;P&gt;Solutions for Fixed Effects&lt;/P&gt;&lt;P&gt;&amp;nbsp;Estimate StandardError DF t Value Pr &amp;gt; |t|&lt;BR /&gt;Intercept 7.7140 0.09218 373 83.68 &amp;lt;.0001&lt;BR /&gt;time 0.05337 0.06763 367 0.79 0.4305&lt;BR /&gt;time*time -0.00134 0.001119 3904 -1.19 0.2326&lt;BR /&gt;carnegie 1 -0.6266 0.06365 3904 -9.84 &amp;lt;.0001&lt;BR /&gt;carnegie 2 -0.6237 0.1218 3904 -5.12 &amp;lt;.0001&lt;BR /&gt;barrons 1 0.4344 0.07189 3904 6.04 &amp;lt;.0001&lt;BR /&gt;barrons 2 -0.2856 0.08835 3904 -3.23 0.0012&lt;BR /&gt;flagship 1 -0.6660 0.08558 3904 -7.78 &amp;lt;.0001&lt;BR /&gt;stateGMC 0.000048 0.000021 3904 2.33 0.0197&lt;BR /&gt;unemploymentGMC -0.1080 0.02829 3904 -3.82 0.0001&lt;BR /&gt;disposableGMC -0.00003 0 3904 -Infty &amp;lt;.0001&lt;BR /&gt;time*time*disposable -1.62E-7 0 3904 -Infty &amp;lt;.0001&lt;BR /&gt;time*stateGM*carnegi 1 1.028E-6 0 3904 Infty &amp;lt;.0001&lt;BR /&gt;time*stateGM*carnegi 2 -6.91E-8 0.000016 3904 -0.00 0.9966&lt;BR /&gt;time*stateGM*barrons 1 -2.99E-6 0 3904 -Infty &amp;lt;.0001&lt;BR /&gt;time*stateGM*barrons 2 -1.17E-6 0 3904 -Infty &amp;lt;.0001&lt;BR /&gt;time*stateGM*flagshi 1 4.32E-6 0 3904 Infty &amp;lt;.0001&lt;BR /&gt;time*stateGM*unemplo -1.08E-8 0 3904 -Infty &amp;lt;.0001&lt;BR /&gt;time*stateGM*disposa -565E-13 0 3904 -Infty &amp;lt;.0001&lt;BR /&gt;time*time*stat*carne 1 -1.56E-7 0 3904 -Infty &amp;lt;.0001&lt;BR /&gt;time*time*stat*carne 2 -1.06E-7 0 3904 -Infty &amp;lt;.0001&lt;BR /&gt;time*time*stat*barro 1 2.987E-7 0 3904 Infty &amp;lt;.0001&lt;BR /&gt;time*time*stat*barro 2 2.956E-7 0 3904 Infty &amp;lt;.0001&lt;BR /&gt;time*time*stat*flags 1 -2E-7 0 3904 -Infty &amp;lt;.0001&lt;BR /&gt;time*time*stat*unemp 2.46E-8 0 3904 Infty &amp;lt;.0001&lt;BR /&gt;time*time*stat*dispo 4.23E-13 . . . .&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Basically, any fixed effects with either stateGMC (grand mean-centered continuous variable) or disposableGMC&amp;nbsp;(grand mean-centered continuous variable) gives me a standard error of 0 or . and Infinity for the t value. Obviously this is wrong and doesn't make sense.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I checked the multicollinearity of these variables (also checked the correlation matrix) but they look fine.&lt;/P&gt;&lt;DIV class="branch"&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;/DIV&gt;&lt;P&gt;Variable DF Parameter Estimate Standard Error t Value Pr &amp;gt; |t| Tolerance Variance Inflation&lt;BR /&gt;Intercept 1 3965.76565 85.20213 46.55 &amp;lt;.0001 . 0&lt;BR /&gt;time 1 57.24893 5.92625 9.66 &amp;lt;.0001 0.85547 1.16895&lt;BR /&gt;carnegie 1 -661.36628 39.82289 -16.61 &amp;lt;.0001 0.85578 1.16853&lt;BR /&gt;barrons 1 124.55068 30.89715 4.03 &amp;lt;.0001 0.96042 1.04121&lt;BR /&gt;flagship 1 -2832.86619 78.96505 -35.87 &amp;lt;.0001 0.80615 1.24047&lt;BR /&gt;stateGMC 1 0.10810 0.00542 19.93 &amp;lt;.0001 0.89349 1.11921&lt;BR /&gt;unemploymentGMC 1 -45.76003 12.24164 -3.74 0.0002 0.91471 1.09324&lt;BR /&gt;disposableGMC 1 -0.05768 0.00469 -12.30 &amp;lt;.0001 0.70785 1.41272&lt;BR /&gt;gdpGMC 1 3.61928E-10 4.01861E-11 9.01 &amp;lt;.0001 0.77164 1.29594&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Can anyone point me to some other issues it could be?&lt;/P&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Sat, 04 Jul 2020 22:29:31 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/GLIMMIX-0-Standard-Error-Infinity-t-value/m-p/666965#M31799</guid>
      <dc:creator>Nerdcy</dc:creator>
      <dc:date>2020-07-04T22:29:31Z</dc:date>
    </item>
    <item>
      <title>Re: GLIMMIX 0 Standard Error Infinity t value</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/GLIMMIX-0-Standard-Error-Infinity-t-value/m-p/666966#M31800</link>
      <description>&lt;OL&gt;
&lt;LI&gt;Some of these variables with 0 standard error are (within roundoff error) completely correlated with (linear combinations of) other variables;&lt;/LI&gt;
&lt;LI&gt;Or there is no variability in the response variable after accounting for the effects of other variables; the terms in the model with 0 variability have no explanatory power; all of the variability is explained by the terms with the standard error &amp;gt; 0.&lt;/LI&gt;
&lt;/OL&gt;
&lt;BLOCKQUOTE&gt;
&lt;P&gt;Basically, any fixed effects with either stateGMC (grand mean-centered continuous variable) or disposableGMC (grand mean-centered continuous variable) gives me a standard error of 0 or . and Infinity for the t value. Obviously this is wrong and doesn't make sense.&lt;/P&gt;
&lt;/BLOCKQUOTE&gt;
&lt;P&gt;My general rule here is that when SAS says one thing and the user says it is wrong, I believe SAS.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;PLEASE FROM NOW ON&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;Format your text properly.&lt;/LI&gt;
&lt;LI&gt;Code should be pasted into the window that appears when you click on the running man icon. DO NOT SKIP THIS STEP&lt;/LI&gt;
&lt;LI&gt;Output should be included into your message as a screen capture by clicking on the "Insert Photos" icon. DO NOT SKIP THIS STEP&lt;/LI&gt;
&lt;LI&gt;Output as text (which you have in your message above) should be pasted into the window that appears when you click on the &amp;lt;/&amp;gt; icon. DO NOT SKIP THIS STEP&lt;/LI&gt;
&lt;LI&gt;All of this makes your message much more readable and more people will contribute to the solution&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;PLEASE DO NOT SKIP THESE STEPS in the future.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 05 Jul 2020 10:50:02 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/GLIMMIX-0-Standard-Error-Infinity-t-value/m-p/666966#M31800</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2020-07-05T10:50:02Z</dc:date>
    </item>
    <item>
      <title>Re: GLIMMIX 0 Standard Error Infinity t value</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/GLIMMIX-0-Standard-Error-Infinity-t-value/m-p/667074#M31807</link>
      <description>&lt;P&gt;A potpourri of ideas:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You don't say which variables you checked for multicollinearity, and it's not clear that you centered all continuous covariates (i.e., time and unemploymentGMC). Quadratic terms can easily be collinear, e.g., time and time*time. So I would try centering all continuous covariates.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;In fact, I would rescale predictor variables; as you try to sort this out, use &lt;EM&gt;standardized&lt;/EM&gt; continuous covariates (not just centered).&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I'd start small and build up. No one wants to try to interpret 4-way interactions anyway &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;You have random linear slopes with time, but not time*time, or any other covariate. I'd start with just random intercept.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Are your covariates measured at the id-level or at the id-time-level? Does your model reflect the appropriate design structure?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Your Parameter Estimate table reports gdpGMC, but it's not in your model statement. It's difficult for the Community to sort out problems when the evidence is inconsistent and incomplete.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I hope this helps move you forward.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 05 Jul 2020 23:51:43 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/GLIMMIX-0-Standard-Error-Infinity-t-value/m-p/667074#M31807</guid>
      <dc:creator>sld</dc:creator>
      <dc:date>2020-07-05T23:51:43Z</dc:date>
    </item>
    <item>
      <title>Re: GLIMMIX 0 Standard Error Infinity t value</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/GLIMMIX-0-Standard-Error-Infinity-t-value/m-p/667144#M31814</link>
      <description>&lt;BLOCKQUOTE&gt;
&lt;P&gt;You don't say which variables you checked for multicollinearity&lt;/P&gt;
&lt;/BLOCKQUOTE&gt;
&lt;P&gt;It's not enough to check variables for multicollinearity. You also have to check linear combinations of variables with other linear combination of variables.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I also suspect centering might be a problem. I recall a case a long time ago where the centering was not exact and the slight roundoff error caused by the centering produced similar results.&lt;/P&gt;</description>
      <pubDate>Mon, 06 Jul 2020 10:27:31 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/GLIMMIX-0-Standard-Error-Infinity-t-value/m-p/667144#M31814</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2020-07-06T10:27:31Z</dc:date>
    </item>
    <item>
      <title>Re: GLIMMIX 0 Standard Error Infinity t value</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/GLIMMIX-0-Standard-Error-Infinity-t-value/m-p/667196#M31816</link>
      <description>&lt;P&gt;Thank you for your response and informing me how to format my output.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 06 Jul 2020 14:33:15 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/GLIMMIX-0-Standard-Error-Infinity-t-value/m-p/667196#M31816</guid>
      <dc:creator>Nerdcy</dc:creator>
      <dc:date>2020-07-06T14:33:15Z</dc:date>
    </item>
    <item>
      <title>Re: GLIMMIX 0 Standard Error Infinity t value</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/GLIMMIX-0-Standard-Error-Infinity-t-value/m-p/667197#M31817</link>
      <description>&lt;P&gt;Thank you. I will try centering time.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 06 Jul 2020 14:34:10 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/GLIMMIX-0-Standard-Error-Infinity-t-value/m-p/667197#M31817</guid>
      <dc:creator>Nerdcy</dc:creator>
      <dc:date>2020-07-06T14:34:10Z</dc:date>
    </item>
    <item>
      <title>Re: GLIMMIX 0 Standard Error Infinity t value</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/GLIMMIX-0-Standard-Error-Infinity-t-value/m-p/667198#M31818</link>
      <description>&lt;P&gt;Thank you. I will try centering time which is the only variable I haven't centered.&lt;/P&gt;</description>
      <pubDate>Mon, 06 Jul 2020 14:35:09 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/GLIMMIX-0-Standard-Error-Infinity-t-value/m-p/667198#M31818</guid>
      <dc:creator>Nerdcy</dc:creator>
      <dc:date>2020-07-06T14:35:09Z</dc:date>
    </item>
    <item>
      <title>Re: GLIMMIX 0 Standard Error Infinity t value</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/GLIMMIX-0-Standard-Error-Infinity-t-value/m-p/667244#M31822</link>
      <description>&lt;P&gt;In addition to all that&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/1708"&gt;@sld&lt;/a&gt;&amp;nbsp;and&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/10892"&gt;@PaigeMiller&lt;/a&gt;&amp;nbsp; offered, I will suggest some other ideas to consider - your subject is id.&amp;nbsp; Be sure this is numeric for all subjects, and it wouldn't hurt to sort the dataset by id, as it is not in the CLASS statement. Next, your model cries out for the use of the EFFECT statement.&amp;nbsp; If you added this:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;EFFECT poly = polynomial(time/degree=2);&lt;/P&gt;
&lt;P&gt;and changed the MODEL statement to:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;model totalsupport =
poly carnegie barrons flagship stateGMC unemploymentGMC disposableGMC
poly*carnegie poly*barrons poly*flagship poly*stateGMC poly*unemploymentGMC poly*disposableGMC
poly*carnegie*stateGMC poly*barrons*stateGMC poly*flagship*stateGMC poly*unemploymentGMC*stateGMC poly*disposableGMC*stateGMC
/dist=Gamma link=log solution;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;you would automatically center and scale time and time*time. I would really consider dropping the last line of effects in the MODEL statement (although that is a preference from biology, not economics). Multi-dimensional response surfaces are often indistinguishable from noise, and suffer from interpretability.&amp;nbsp; For instance, suppose the time*time*carnegie*stateGMC is significant.&amp;nbsp; What does that mean?&amp;nbsp; Oh, and how many levels do carnegie, barrons and flagship have?&amp;nbsp; If each is a binary, consider creating a catch-all variable (call it source for now), such that source has 3 levels -'Carnegie', 'Barrons' and 'Flagship'.&amp;nbsp; If that is the case your model statement would become:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;model totalsupport =
poly source stateGMC unemploymentGMC disposableGMC
poly*source poly*stateGMC poly*unemploymentGMC poly*disposableGMC
poly*source*stateGMC poly*unemploymentGMC*stateGMC poly*disposableGMC*stateGMC
/dist=Gamma link=log solution;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Just some thoughts.&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;</description>
      <pubDate>Mon, 06 Jul 2020 17:24:10 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/GLIMMIX-0-Standard-Error-Infinity-t-value/m-p/667244#M31822</guid>
      <dc:creator>SteveDenham</dc:creator>
      <dc:date>2020-07-06T17:24:10Z</dc:date>
    </item>
    <item>
      <title>Re: GLIMMIX 0 Standard Error Infinity t value</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/GLIMMIX-0-Standard-Error-Infinity-t-value/m-p/667256#M31826</link>
      <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/15363"&gt;@SteveDenham&lt;/a&gt;&amp;nbsp;&amp;nbsp; Oh, good spotting about ID not being the CLASS statement! I like the EFFECT suggestion as well.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;As Steve notes, ID can be omitted from the CLASS statement as long as the dataset is sorted by ID. Or I'm guessing that there are about 400 subjects, so ID could go into CLASS; you'd probably want to turn off the classification table in the output. I think this would work:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;ods exclude classlevels;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://blogs.sas.com/content/iml/2015/05/26/suppress-ods.html" target="_self"&gt;The DO Loop: What is the best way to suppress ODS output in SAS?&lt;/A&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://documentation.sas.com/?docsetId=statug&amp;amp;docsetTarget=statug_glimmix_details80.htm&amp;amp;docsetVersion=15.1&amp;amp;locale=en" target="_self"&gt;The GLIMMIX Procedure ODS Table Names&lt;/A&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 06 Jul 2020 18:06:21 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/GLIMMIX-0-Standard-Error-Infinity-t-value/m-p/667256#M31826</guid>
      <dc:creator>sld</dc:creator>
      <dc:date>2020-07-06T18:06:21Z</dc:date>
    </item>
    <item>
      <title>Re: GLIMMIX 0 Standard Error Infinity t value</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/GLIMMIX-0-Standard-Error-Infinity-t-value/m-p/667259#M31828</link>
      <description>&lt;P&gt;In addition to&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/1708"&gt;@sld&lt;/a&gt;&amp;nbsp;'s method for suppressing huge class level lists, there is a NOCLPRINT option for the PROC GLIMMIX statement.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;SteveDenham&lt;/P&gt;</description>
      <pubDate>Mon, 06 Jul 2020 18:15:17 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/GLIMMIX-0-Standard-Error-Infinity-t-value/m-p/667259#M31828</guid>
      <dc:creator>SteveDenham</dc:creator>
      <dc:date>2020-07-06T18:15:17Z</dc:date>
    </item>
    <item>
      <title>Re: GLIMMIX 0 Standard Error Infinity t value</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/GLIMMIX-0-Standard-Error-Infinity-t-value/m-p/667262#M31829</link>
      <description>&lt;P&gt;Even easier!&lt;/P&gt;</description>
      <pubDate>Mon, 06 Jul 2020 18:17:37 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/GLIMMIX-0-Standard-Error-Infinity-t-value/m-p/667262#M31829</guid>
      <dc:creator>sld</dc:creator>
      <dc:date>2020-07-06T18:17:37Z</dc:date>
    </item>
    <item>
      <title>Re: GLIMMIX 0 Standard Error Infinity t value</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/GLIMMIX-0-Standard-Error-Infinity-t-value/m-p/667575#M31860</link>
      <description>&lt;P&gt;Thank you! I will use effect poly.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 07 Jul 2020 20:53:54 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/GLIMMIX-0-Standard-Error-Infinity-t-value/m-p/667575#M31860</guid>
      <dc:creator>Nerdcy</dc:creator>
      <dc:date>2020-07-07T20:53:54Z</dc:date>
    </item>
    <item>
      <title>Re: GLIMMIX 0 Standard Error Infinity t value</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/GLIMMIX-0-Standard-Error-Infinity-t-value/m-p/667576#M31861</link>
      <description>&lt;P&gt;Hi, after centering time it still didn't work, but when I used the log of the predictors it worked fine. Does this mean it was not a linear relationship (logged outcome and logged predictor)?&lt;/P&gt;</description>
      <pubDate>Tue, 07 Jul 2020 20:56:30 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/GLIMMIX-0-Standard-Error-Infinity-t-value/m-p/667576#M31861</guid>
      <dc:creator>Nerdcy</dc:creator>
      <dc:date>2020-07-07T20:56:30Z</dc:date>
    </item>
    <item>
      <title>Re: GLIMMIX 0 Standard Error Infinity t value</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/GLIMMIX-0-Standard-Error-Infinity-t-value/m-p/667577#M31862</link>
      <description>&lt;P&gt;Hi, as an update, after centering time it still didn't work, but when I used the log of the predictors it worked fine. Does this mean it was not a linear relationship (logged outcome and logged predictor)?&lt;/P&gt;</description>
      <pubDate>Tue, 07 Jul 2020 20:57:11 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/GLIMMIX-0-Standard-Error-Infinity-t-value/m-p/667577#M31862</guid>
      <dc:creator>Nerdcy</dc:creator>
      <dc:date>2020-07-07T20:57:11Z</dc:date>
    </item>
    <item>
      <title>Re: GLIMMIX 0 Standard Error Infinity t value</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/GLIMMIX-0-Standard-Error-Infinity-t-value/m-p/667578#M31863</link>
      <description>&lt;P&gt;Nonlinear relationships are certainly a possibility. At a minimum, when you have a model that runs, you would do the usual regression diagnostics and residual analyses.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;It could also be that the log transformation rescaled the variables, reducing their variances or making their variances more similar. Have you tried standardizing?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Did you address the issue with ID and either sorting or including it in the CLASS statement?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 07 Jul 2020 21:06:40 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/GLIMMIX-0-Standard-Error-Infinity-t-value/m-p/667578#M31863</guid>
      <dc:creator>sld</dc:creator>
      <dc:date>2020-07-07T21:06:40Z</dc:date>
    </item>
    <item>
      <title>Re: GLIMMIX 0 Standard Error Infinity t value</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/GLIMMIX-0-Standard-Error-Infinity-t-value/m-p/667764#M31873</link>
      <description>&lt;P&gt;Yes, after fixing the issues of ID and CLASS I'm still running into the same issues. I have attached my residuals (which actually look the same whether I use the logged predictors or not).&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="ResidualPanelloggedpredictor.png" style="width: 640px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/47005i34E6983087596CF2/image-size/large?v=v2&amp;amp;px=999" role="button" title="ResidualPanelloggedpredictor.png" alt="ResidualPanelloggedpredictor.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 08 Jul 2020 15:42:31 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/GLIMMIX-0-Standard-Error-Infinity-t-value/m-p/667764#M31873</guid>
      <dc:creator>Nerdcy</dc:creator>
      <dc:date>2020-07-08T15:42:31Z</dc:date>
    </item>
    <item>
      <title>Re: GLIMMIX 0 Standard Error Infinity t value</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/GLIMMIX-0-Standard-Error-Infinity-t-value/m-p/667837#M31880</link>
      <description>&lt;P&gt;At this point, I don't know what model you are now running or what "the same issues" are. Presumably the model with log transformed predictors (all predictors? all predictors except time? transformed and then centered? transformed and then standardized?) appears to run without apparent errors? If you would like more input, provide us with an update of your model and your output.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 08 Jul 2020 19:29:42 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/GLIMMIX-0-Standard-Error-Infinity-t-value/m-p/667837#M31880</guid>
      <dc:creator>sld</dc:creator>
      <dc:date>2020-07-08T19:29:42Z</dc:date>
    </item>
    <item>
      <title>Re: GLIMMIX 0 Standard Error Infinity t value</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/GLIMMIX-0-Standard-Error-Infinity-t-value/m-p/668387#M31921</link>
      <description>&lt;P&gt;Sorry for the confusion.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The model with the logged continuous predictors (not including time) works fine. I guess my question is more statistical in nature. My professor didn't want me to standardize these variables (which also worked) because it makes the random effects difficult to interpret. I guess my question is if I log the predictors, would that also make the random effects difficult to interpret or would I just follow the usual rules for interpreting after a log transformation?&lt;/P&gt;</description>
      <pubDate>Fri, 10 Jul 2020 14:45:55 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/GLIMMIX-0-Standard-Error-Infinity-t-value/m-p/668387#M31921</guid>
      <dc:creator>Nerdcy</dc:creator>
      <dc:date>2020-07-10T14:45:55Z</dc:date>
    </item>
    <item>
      <title>Re: GLIMMIX 0 Standard Error Infinity t value</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/GLIMMIX-0-Standard-Error-Infinity-t-value/m-p/668411#M31923</link>
      <description>&lt;P&gt;I am puzzled by many aspects of your response, and I wonder if you meant to write about interpreting fixed effects rather than random effects.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;With a model such as yours, I would say that we generally are not interested in interpreting the random effects, other than evaluating (either formally or informally) whether the variances/covariances are different than zero.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The scale of the random effects is determined by the scale of the response, not the scales of the predictors. With a gamma distribution and a log link, (co)variances are on the log scale.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;We are, of course, interested in interpreting the fixed effects, and then the scales of both response and predictors do matter. &lt;EM&gt;Transformations&lt;/EM&gt; and/or &lt;EM&gt;links&lt;/EM&gt; (here, log for the gamma) change the fundamental form of the relationship between response and predictor; if you are fitting a linear regression model (including a generalized linear mixed model), then some combinations of scales for response and predictors may better meet the assumptions of linearity. &lt;EM&gt;Rescaling&lt;/EM&gt;, such as centering or standardizing, does not affect the form of the relationship.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;As personal rules of thumb: Ideally, I would only &lt;EM&gt;transform&lt;/EM&gt; predictors to better meet linearity assumptions, or for some other "sensible" reason. For example, if one of my predictors is a pre-treatment/baseline measure of the same variable as the response, I transform the predictor to match the scale of the response. (I do not think you have a baseline predictor here.)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;As for &lt;EM&gt;rescaling&lt;/EM&gt; (as distinct from &lt;EM&gt;transformation&lt;/EM&gt;), I generally center continuous predictors in regression, and I always center continuous predictors in regression when the predictors are involved in interaction. If I am having estimation trouble, or if I want to interpret predictor effects relative to a one standard deviation change, I standardize continuous predictors. Rescaling does not present any complicated challenges to interpretation.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I hope this helps move you forward.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you have a professor, then you are at an institution where you might be able to find a statistician to provide more intensive help.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 10 Jul 2020 16:42:24 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/GLIMMIX-0-Standard-Error-Infinity-t-value/m-p/668411#M31923</guid>
      <dc:creator>sld</dc:creator>
      <dc:date>2020-07-10T16:42:24Z</dc:date>
    </item>
    <item>
      <title>Re: GLIMMIX 0 Standard Error Infinity t value</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/GLIMMIX-0-Standard-Error-Infinity-t-value/m-p/668918#M31943</link>
      <description>&lt;P&gt;That Q-Q plot tells me that the link you have (or the distribution) isn't quite appropriate, as the residuals get much larger than expected as you move to higher quantiles. You may need to do something about the skewness of the residuals.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;SteveDenham&lt;/P&gt;</description>
      <pubDate>Mon, 13 Jul 2020 18:39:13 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/GLIMMIX-0-Standard-Error-Infinity-t-value/m-p/668918#M31943</guid>
      <dc:creator>SteveDenham</dc:creator>
      <dc:date>2020-07-13T18:39:13Z</dc:date>
    </item>
  </channel>
</rss>

