<?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 error message in Statistical Procedures</title>
    <link>https://communities.sas.com/t5/Statistical-Procedures/PROC-GLIMMIX-error-message/m-p/243067#M12798</link>
    <description>&lt;P&gt;That is not an error message but a statement about how the procedure behaved. It is likely indicating that method=quad was not appropriate for the specific data used in this case.&lt;/P&gt;</description>
    <pubDate>Tue, 12 Jan 2016 21:11:58 GMT</pubDate>
    <dc:creator>ballardw</dc:creator>
    <dc:date>2016-01-12T21:11:58Z</dc:date>
    <item>
      <title>PROC GLIMMIX error message</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/PROC-GLIMMIX-error-message/m-p/243020#M12795</link>
      <description>&lt;P&gt;&lt;SPAN&gt;&lt;STRONG&gt;I am trying to estimate a pooled random effects proportion. I get an error message I have never encountered before: &lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;DIV&gt;&lt;P&gt;NOTE: At the starting values the G matrix is the zero matrix. Adaptively determining the number of quadrature points is not meaningful. The QMIN=1 value is chosen. You can provide starting values for the covariance parameters with&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; the PARMS statement.&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;FONT color="#011993"&gt;It also says: (which I understand better)&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;NOTE: Convergence criterion (ABSGCONV=0.00001) satisfied.&lt;/P&gt;&lt;P&gt;NOTE: Estimated G matrix is not positive definite.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&lt;STRONG&gt;The confidence interval obtained is really, really, really wide.&amp;nbsp;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&lt;STRONG&gt;The code I used is: &lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/DIV&gt;&lt;P&gt;&lt;SPAN&gt;&lt;STRONG&gt;PROC&lt;/STRONG&gt;&lt;/SPAN&gt; &lt;SPAN&gt;&lt;STRONG&gt;GLIMMIX&lt;/STRONG&gt;&lt;/SPAN&gt; &lt;SPAN&gt;DATA&lt;/SPAN&gt;=IPDALL2 &lt;SPAN&gt;METHOD&lt;/SPAN&gt;=QUAD;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;CLASS&lt;/SPAN&gt; COUNTRY; &amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;MODEL&lt;/SPAN&gt; NUM/DENOM= /&lt;SPAN&gt;DIST&lt;/SPAN&gt;=BIN &lt;SPAN&gt;SOLUTION&lt;/SPAN&gt; &lt;SPAN&gt;CL&lt;/SPAN&gt;;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;RANDOM&lt;/SPAN&gt; INT /&lt;SPAN&gt;SUBJECT&lt;/SPAN&gt;=COUNTRY;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;RUN&lt;/STRONG&gt;&lt;SPAN&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/DIV&gt;</description>
      <pubDate>Tue, 12 Jan 2016 18:55:19 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/PROC-GLIMMIX-error-message/m-p/243020#M12795</guid>
      <dc:creator>abened</dc:creator>
      <dc:date>2016-01-12T18:55:19Z</dc:date>
    </item>
    <item>
      <title>Re: PROC GLIMMIX error message</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/PROC-GLIMMIX-error-message/m-p/243067#M12798</link>
      <description>&lt;P&gt;That is not an error message but a statement about how the procedure behaved. It is likely indicating that method=quad was not appropriate for the specific data used in this case.&lt;/P&gt;</description>
      <pubDate>Tue, 12 Jan 2016 21:11:58 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/PROC-GLIMMIX-error-message/m-p/243067#M12798</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2016-01-12T21:11:58Z</dc:date>
    </item>
    <item>
      <title>Re: PROC GLIMMIX error message</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/PROC-GLIMMIX-error-message/m-p/243172#M12805</link>
      <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13884"&gt;@ballardw﻿&lt;/a&gt;'s response is right on. &amp;nbsp;Method=quad isn't appropriate--I would guess that the number of countries being fit or at least with very different proportions is small. &amp;nbsp;You could try METHOD=LAPLACE (which is what QUAD with one point is doing anyway), but the whole thing looks as if there is insufficient variability due to country for that to work well (that's the meaning of&amp;nbsp;&lt;SPAN&gt;NOTE: Estimated G matrix is not positive definite.), and it is why the confidence interval is so large&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If that doesn't help, you'll probably have to go to a marginal model, using the default pseudo-likelihood method.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Steve Denham&lt;/P&gt;</description>
      <pubDate>Wed, 13 Jan 2016 13:44:16 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/PROC-GLIMMIX-error-message/m-p/243172#M12805</guid>
      <dc:creator>SteveDenham</dc:creator>
      <dc:date>2016-01-13T13:44:16Z</dc:date>
    </item>
  </channel>
</rss>

