<?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: PROC GLIMMIX - can you suppress output of just 1 random effect ? in Statistical Procedures</title>
    <link>https://communities.sas.com/t5/Statistical-Procedures/PROC-GLIMMIX-can-you-suppress-output-of-just-1-random-effect/m-p/921512#M45790</link>
    <description>&lt;P&gt;cross classified models do take a lot of resources. Is this really a cross-classified model? Or can it be written as a nested model? You might want to take a closer look at your data, especially how var1 and var2 are releated to subject, to answer this question.&lt;/P&gt;
&lt;P&gt;It is also possible that your memsize is set at the default 2GB, which is not nearly enough. You can run the following code and find out your memsize:&lt;/P&gt;
&lt;P&gt;proc options option=memsize value;&lt;/P&gt;
&lt;P&gt;run;&lt;/P&gt;
&lt;P&gt;if it is 2GB, you can edit the sasv9.cfg file to increase the memsize.&lt;/P&gt;
&lt;P&gt;Hope this helps,&lt;/P&gt;
&lt;P&gt;Jill&lt;/P&gt;</description>
    <pubDate>Fri, 22 Mar 2024 14:32:00 GMT</pubDate>
    <dc:creator>jiltao</dc:creator>
    <dc:date>2024-03-22T14:32:00Z</dc:date>
    <item>
      <title>PROC GLIMMIX - can you suppress output of just 1 random effect ?</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/PROC-GLIMMIX-can-you-suppress-output-of-just-1-random-effect/m-p/921380#M45786</link>
      <description>&lt;P&gt;I'm working in PROC GLIMMIX (SAS 9.4) and have a large sample. When I try to model my 3 random effects I get this error message:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;"ERROR: Model is too large to be fit by PROC GLIMMIX in a reasonable amount of time on this system.&lt;BR /&gt;Consider changing your model."&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;For this statement below "ods exclude solutionr;" - is there a way to supress the output for just subject but not var1 and var2? other ideas?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Example syntax:&lt;/P&gt;&lt;P&gt;proc glimmix data=sample noclprint;&lt;BR /&gt;class subject var1 var2;&lt;BR /&gt;model outcome (event=last) = age sex/ solution CL&lt;BR /&gt;dist = binary;&lt;BR /&gt;random intercept/ sub=subject solution;&lt;BR /&gt;random intercept/ sub=var1 solution;&lt;BR /&gt;random intercept/ sub=var2 solution;&lt;BR /&gt;covtest GLM/ WALD;&lt;BR /&gt;ods exclude solutionr;&lt;BR /&gt;run;&lt;/P&gt;</description>
      <pubDate>Thu, 21 Mar 2024 19:13:07 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/PROC-GLIMMIX-can-you-suppress-output-of-just-1-random-effect/m-p/921380#M45786</guid>
      <dc:creator>JHSAS</dc:creator>
      <dc:date>2024-03-21T19:13:07Z</dc:date>
    </item>
    <item>
      <title>Re: PROC GLIMMIX - can you suppress output of just 1 random effect ?</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/PROC-GLIMMIX-can-you-suppress-output-of-just-1-random-effect/m-p/921441#M45788</link>
      <description>&lt;P&gt;No. It has nothing to do with "ods exclude solutionr;" .&lt;BR /&gt;Your Design Matrix (special Z matrix from random effect) is too big for your model or PC memory .&lt;BR /&gt;You could shrink your model random effect &lt;BR /&gt;or try DDFM=BW option.&lt;BR /&gt;model outcome (event=last) = age sex/ solution CL DDFM=bw dist = binary;&lt;BR /&gt;&lt;BR /&gt;Also calling &lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/15363"&gt;@SteveDenham&lt;/a&gt; &lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13633"&gt;@StatDave&lt;/a&gt; &lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13758"&gt;@lvm&lt;/a&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 22 Mar 2024 05:04:04 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/PROC-GLIMMIX-can-you-suppress-output-of-just-1-random-effect/m-p/921441#M45788</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2024-03-22T05:04:04Z</dc:date>
    </item>
    <item>
      <title>Re: PROC GLIMMIX - can you suppress output of just 1 random effect ?</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/PROC-GLIMMIX-can-you-suppress-output-of-just-1-random-effect/m-p/921499#M45789</link>
      <description>&lt;P&gt;With three non-nested random effects, your model falls into a class of models (cross-classified models) that can be very time-intensive and memory-intensive to fit. Knowing a little more about the data structure and number of levels to your 3 random effects will help the community understand your problem better. If you have a large number of levels to any of these effects, sampling observations from those levels might help. You can run repeated samples to build up a distribution for your random effect variances.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 22 Mar 2024 12:55:36 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/PROC-GLIMMIX-can-you-suppress-output-of-just-1-random-effect/m-p/921499#M45789</guid>
      <dc:creator>StatsMan</dc:creator>
      <dc:date>2024-03-22T12:55:36Z</dc:date>
    </item>
    <item>
      <title>Re: PROC GLIMMIX - can you suppress output of just 1 random effect ?</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/PROC-GLIMMIX-can-you-suppress-output-of-just-1-random-effect/m-p/921512#M45790</link>
      <description>&lt;P&gt;cross classified models do take a lot of resources. Is this really a cross-classified model? Or can it be written as a nested model? You might want to take a closer look at your data, especially how var1 and var2 are releated to subject, to answer this question.&lt;/P&gt;
&lt;P&gt;It is also possible that your memsize is set at the default 2GB, which is not nearly enough. You can run the following code and find out your memsize:&lt;/P&gt;
&lt;P&gt;proc options option=memsize value;&lt;/P&gt;
&lt;P&gt;run;&lt;/P&gt;
&lt;P&gt;if it is 2GB, you can edit the sasv9.cfg file to increase the memsize.&lt;/P&gt;
&lt;P&gt;Hope this helps,&lt;/P&gt;
&lt;P&gt;Jill&lt;/P&gt;</description>
      <pubDate>Fri, 22 Mar 2024 14:32:00 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/PROC-GLIMMIX-can-you-suppress-output-of-just-1-random-effect/m-p/921512#M45790</guid>
      <dc:creator>jiltao</dc:creator>
      <dc:date>2024-03-22T14:32:00Z</dc:date>
    </item>
    <item>
      <title>Re: PROC GLIMMIX - can you suppress output of just 1 random effect ?</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/PROC-GLIMMIX-can-you-suppress-output-of-just-1-random-effect/m-p/921516#M45791</link>
      <description>&lt;P&gt;Thank you for all this feedback! let me review this carefully and bounce it off the team to see what we can do.&lt;/P&gt;</description>
      <pubDate>Fri, 22 Mar 2024 15:02:27 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/PROC-GLIMMIX-can-you-suppress-output-of-just-1-random-effect/m-p/921516#M45791</guid>
      <dc:creator>JHSAS</dc:creator>
      <dc:date>2024-03-22T15:02:27Z</dc:date>
    </item>
  </channel>
</rss>

