<?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 proc glimmix with continuous outcome variable; unbalanced dataset in SAS Procedures</title>
    <link>https://communities.sas.com/t5/SAS-Procedures/proc-glimmix-with-continuous-outcome-variable-unbalanced-dataset/m-p/165180#M42810</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, I am a relatively new to SAS but am trying to run a GLIMMIX model to take account of the flexible family (link) options not available in R....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a longitudinal dataset of ~98,000 observations on ~30,000 individuals (user). The data is unbalanced as some individuals only have 1 observation and some have many over the period of observation.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The outcome variable is continuous and non-normal (A). There is up to 6 independent variables which are categorical or continuous (eg X).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The code I am running is &lt;/P&gt;&lt;P&gt;proc glimmix data=work.P3 ;&lt;/P&gt;&lt;P&gt;model A = X /&lt;/P&gt;&lt;P&gt;s dist=expo link=log ;&lt;/P&gt;&lt;P&gt;random intercept / subject=user ;&lt;/P&gt;&lt;P&gt;run ;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When I run this base model I get the following issues: &lt;/P&gt;&lt;P&gt;ERROR: Integer overflow on computing amount of memory required.&lt;/P&gt;&lt;P&gt;ERROR: The SAS System stopped processing this step because of insufficient memory&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can someone advise what I should do to overcome this in SAS.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Many thanks in advance.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 11 Nov 2014 02:30:13 GMT</pubDate>
    <dc:creator>kayec</dc:creator>
    <dc:date>2014-11-11T02:30:13Z</dc:date>
    <item>
      <title>proc glimmix with continuous outcome variable; unbalanced dataset</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/proc-glimmix-with-continuous-outcome-variable-unbalanced-dataset/m-p/165180#M42810</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, I am a relatively new to SAS but am trying to run a GLIMMIX model to take account of the flexible family (link) options not available in R....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a longitudinal dataset of ~98,000 observations on ~30,000 individuals (user). The data is unbalanced as some individuals only have 1 observation and some have many over the period of observation.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The outcome variable is continuous and non-normal (A). There is up to 6 independent variables which are categorical or continuous (eg X).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The code I am running is &lt;/P&gt;&lt;P&gt;proc glimmix data=work.P3 ;&lt;/P&gt;&lt;P&gt;model A = X /&lt;/P&gt;&lt;P&gt;s dist=expo link=log ;&lt;/P&gt;&lt;P&gt;random intercept / subject=user ;&lt;/P&gt;&lt;P&gt;run ;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When I run this base model I get the following issues: &lt;/P&gt;&lt;P&gt;ERROR: Integer overflow on computing amount of memory required.&lt;/P&gt;&lt;P&gt;ERROR: The SAS System stopped processing this step because of insufficient memory&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can someone advise what I should do to overcome this in SAS.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Many thanks in advance.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 11 Nov 2014 02:30:13 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/proc-glimmix-with-continuous-outcome-variable-unbalanced-dataset/m-p/165180#M42810</guid>
      <dc:creator>kayec</dc:creator>
      <dc:date>2014-11-11T02:30:13Z</dc:date>
    </item>
    <item>
      <title>Re: proc glimmix with continuous outcome variable; unbalanced dataset</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/proc-glimmix-with-continuous-outcome-variable-unbalanced-dataset/m-p/165181#M42811</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;My first suggestion would be to Google Liang Xie and Larry Madden's paper "%HPGLIMMIX: A High Performance SAS Macro for GLMM Estimation,"&amp;nbsp; Journal of Statistical Software, 58(8).&amp;nbsp; A copy of the macro can be obtained at &lt;A href="http://www.jstatsoft.org/v58/i08"&gt;http://www.jstatsoft.org/v58/i08&lt;/A&gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My second suggestion is to check the available memory for your instance of SAS.&amp;nbsp; You may have to step up the memsize= global option. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If neither of these work, you may need to sample and bootstrap your estimates in a model-averaging context.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Steve Denham&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 11 Nov 2014 13:38:59 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/proc-glimmix-with-continuous-outcome-variable-unbalanced-dataset/m-p/165181#M42811</guid>
      <dc:creator>SteveDenham</dc:creator>
      <dc:date>2014-11-11T13:38:59Z</dc:date>
    </item>
  </channel>
</rss>

