<?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 GLMMIX no converge and p value in Statistical Procedures</title>
    <link>https://communities.sas.com/t5/Statistical-Procedures/PROC-GLMMIX-no-converge-and-p-value/m-p/953625#M47713</link>
    <description>&lt;P&gt;Hi SAS experts,&lt;/P&gt;&lt;P&gt;My research involves simultaneously measuring IBP and NIBP in 157 dogs.Some discrepancies occur during the measurements, we define a discrepancy as a difference &amp;gt;10 mmHg (match_S = 0), and no discrepancy as a difference &amp;lt;10 mmHg (match_S = 1). The factors I want to analyze include:&lt;/P&gt;&lt;P&gt;catagorical variables: &amp;nbsp;gender, breed, asa, bcs, disease, surgerytype, duration, sirs, qsofa, na, alb, cuffsite, IBPICsize, IBPsite, perianalgesia, dexcri, local, anticholinergic, inotrope, other&lt;/P&gt;&lt;P&gt;continuous variables: &amp;nbsp;weight, age, pcv&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The current code is:&lt;/P&gt;&lt;P&gt;proc glimmix data=one order=data;&lt;BR /&gt;class gender breed asa bcs disease surgerytype duration sirs qsofa na alb cuffsite IBPICsize IBPsite perianalgesia dexcri local anticholinergic inotrope other;&lt;BR /&gt;model match_S(event='0') = gender breed asa bcs disease surgerytype duration sirs qsofa na alb cuffsite IBPICsize IBPsite perianalgesia dexcri local anticholinergic inotrope other weight age pcv / solution dist=binary link=logit;&lt;BR /&gt;random intercept / subject=No solution;&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;But the results do not converge, and no p-values are generated. However, when &lt;STRONG&gt;No&lt;/STRONG&gt; is not set as a random variable, p-values are generated. How can I improve my results?&lt;/P&gt;</description>
    <pubDate>Mon, 16 Dec 2024 06:23:52 GMT</pubDate>
    <dc:creator>oohsienoo</dc:creator>
    <dc:date>2024-12-16T06:23:52Z</dc:date>
    <item>
      <title>PROC GLMMIX no converge and p value</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/PROC-GLMMIX-no-converge-and-p-value/m-p/953625#M47713</link>
      <description>&lt;P&gt;Hi SAS experts,&lt;/P&gt;&lt;P&gt;My research involves simultaneously measuring IBP and NIBP in 157 dogs.Some discrepancies occur during the measurements, we define a discrepancy as a difference &amp;gt;10 mmHg (match_S = 0), and no discrepancy as a difference &amp;lt;10 mmHg (match_S = 1). The factors I want to analyze include:&lt;/P&gt;&lt;P&gt;catagorical variables: &amp;nbsp;gender, breed, asa, bcs, disease, surgerytype, duration, sirs, qsofa, na, alb, cuffsite, IBPICsize, IBPsite, perianalgesia, dexcri, local, anticholinergic, inotrope, other&lt;/P&gt;&lt;P&gt;continuous variables: &amp;nbsp;weight, age, pcv&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The current code is:&lt;/P&gt;&lt;P&gt;proc glimmix data=one order=data;&lt;BR /&gt;class gender breed asa bcs disease surgerytype duration sirs qsofa na alb cuffsite IBPICsize IBPsite perianalgesia dexcri local anticholinergic inotrope other;&lt;BR /&gt;model match_S(event='0') = gender breed asa bcs disease surgerytype duration sirs qsofa na alb cuffsite IBPICsize IBPsite perianalgesia dexcri local anticholinergic inotrope other weight age pcv / solution dist=binary link=logit;&lt;BR /&gt;random intercept / subject=No solution;&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;But the results do not converge, and no p-values are generated. However, when &lt;STRONG&gt;No&lt;/STRONG&gt; is not set as a random variable, p-values are generated. How can I improve my results?&lt;/P&gt;</description>
      <pubDate>Mon, 16 Dec 2024 06:23:52 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/PROC-GLMMIX-no-converge-and-p-value/m-p/953625#M47713</guid>
      <dc:creator>oohsienoo</dc:creator>
      <dc:date>2024-12-16T06:23:52Z</dc:date>
    </item>
    <item>
      <title>Re: PROC GLMMIX no converge and p value</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/PROC-GLMMIX-no-converge-and-p-value/m-p/953628#M47714</link>
      <description>&lt;P&gt;I think you have too many independent variables, especially too many category variable, that make design matrix is way too wide .&lt;BR /&gt;and the number of obs/records in dataset is too small for such big/wide design matrix. you could try LAPLACE method:&lt;BR /&gt;proc glimmix data=have &lt;STRONG&gt;method=laplace&lt;/STRONG&gt; ;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;For more troubleshooting this question ,check this paper(see &lt;STRONG&gt;attachment&lt;/STRONG&gt;) at the end .&lt;/P&gt;</description>
      <pubDate>Mon, 16 Dec 2024 07:35:22 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/PROC-GLMMIX-no-converge-and-p-value/m-p/953628#M47714</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2024-12-16T07:35:22Z</dc:date>
    </item>
    <item>
      <title>Re: PROC GLMMIX no converge and p value</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/PROC-GLMMIX-no-converge-and-p-value/m-p/955042#M47768</link>
      <description>&lt;P&gt;In addition to&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/18408"&gt;@Ksharp&lt;/a&gt;&amp;nbsp;'s observation about model complexity, I would suggest that you look into using the NLOPTIONS statement in your GLIMMIX code. If the iteration history is relatively well behaved (i.e., it is close to monotonic throughout), simply increasing the number of iterations from the default of 20 using the MAXITER= option may result in convergence. I almost always set this at MAXITER=1000, especially when fitting binary data.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;SteveDenham&lt;/P&gt;</description>
      <pubDate>Fri, 03 Jan 2025 17:33:13 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/PROC-GLMMIX-no-converge-and-p-value/m-p/955042#M47768</guid>
      <dc:creator>SteveDenham</dc:creator>
      <dc:date>2025-01-03T17:33:13Z</dc:date>
    </item>
  </channel>
</rss>

