<?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: Fitting beta-binomial overdispersed model with random effects (repeated measures) in Statistical Procedures</title>
    <link>https://communities.sas.com/t5/Statistical-Procedures/Fitting-beta-binomial-overdispersed-model-with-random-effects/m-p/951200#M47556</link>
    <description>&lt;P&gt;I have no idea on the solution to this specific question, but would like to recommend the only monograph I have found on building overdispersion models with SAS: &lt;A href="https://www.amazon.com/Overdispersion-Models-SAS-Jorge-Morel/dp/1607648814/ref=sr_1_1?crid=32YWL44SNFIGW&amp;amp;dib=eyJ2IjoiMSJ9.z1V0v0TSCZ6s2yv7HhrO1g.1tmITRQIqyD5oyD5TGzJmuau03mm0V1ls2t7M22_vnc&amp;amp;dib_tag=se&amp;amp;keywords=overdispersion+models+sas&amp;amp;qid=1732012312&amp;amp;sprefix=overdispersion+models+s%2Caps%2C360&amp;amp;sr=8-1" target="_blank"&gt;Amazon.com: Overdispersion Models in SAS: 9781607648819: Morel PhD, Jorge G., Neerchal PhD, Nagaraj: Books&lt;/A&gt;. I have read part of it and am not sure whether it contains the answer to your specific question. But I am sure it is a good monograph for those who wish to have a systematic understanding on this field.&lt;/P&gt;</description>
    <pubDate>Tue, 19 Nov 2024 10:32:54 GMT</pubDate>
    <dc:creator>Season</dc:creator>
    <dc:date>2024-11-19T10:32:54Z</dc:date>
    <item>
      <title>Fitting beta-binomial overdispersed model with random effects (repeated measures)</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Fitting-beta-binomial-overdispersed-model-with-random-effects/m-p/947692#M47405</link>
      <description>&lt;P&gt;Hello -&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have been looking and can't find out how to fit a beta-binomial model with random effects (subject).&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;In FFM there is a beta-binomial model but looks like no random effects.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;In glimmix there is binomial with random effects but no over-dispersed binomial (beta-binomial).&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Anyone had experience fitting this model in SAS?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 16 Oct 2024 15:47:07 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Fitting-beta-binomial-overdispersed-model-with-random-effects/m-p/947692#M47405</guid>
      <dc:creator>blf</dc:creator>
      <dc:date>2024-10-16T15:47:07Z</dc:date>
    </item>
    <item>
      <title>Re: Fitting beta-binomial overdispersed model with random effects (repeated measures)</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Fitting-beta-binomial-overdispersed-model-with-random-effects/m-p/947732#M47408</link>
      <description>&lt;P&gt;If you know the formulas for the log-likelihood, you can, with no small amount of effort, write the supporting code to fit a beta-binomial in NLMIXED or in MCMC, where you make the binomial parameter a function of the beta distribution. Mr. Google might be of some assistance here. I suppose I am saying I know what might work, but I sure don't know how to do it.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;SteveDenham&lt;/P&gt;</description>
      <pubDate>Wed, 16 Oct 2024 18:28:00 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Fitting-beta-binomial-overdispersed-model-with-random-effects/m-p/947732#M47408</guid>
      <dc:creator>SteveDenham</dc:creator>
      <dc:date>2024-10-16T18:28:00Z</dc:date>
    </item>
    <item>
      <title>Re: Fitting beta-binomial overdispersed model with random effects (repeated measures)</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Fitting-beta-binomial-overdispersed-model-with-random-effects/m-p/947743#M47411</link>
      <description>&lt;P&gt;The log likelihood for the beta-binomial is shown in "Log-Likelihood Functions for Response Distributions" in the Details section of the FMM documentation. As suggested, you can use PROC NLMIXED to fit a model specifying this log likelihood and adding a RANDOM statement if desired. You can see examples of fitting a model with specified log likelihood function in &lt;A href="http://support.sas.com/kb/43522" target="_self"&gt;this note&lt;/A&gt; showing this using the log likelihood for the truncated Poisson and negative binomial distributions and in &lt;A href="http://support.sas.com/kb/44354" target="_self"&gt;this note&lt;/A&gt; where the zero-inflated Poisson and negative binomial are specified.&lt;/P&gt;</description>
      <pubDate>Wed, 16 Oct 2024 19:16:11 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Fitting-beta-binomial-overdispersed-model-with-random-effects/m-p/947743#M47411</guid>
      <dc:creator>StatDave</dc:creator>
      <dc:date>2024-10-16T19:16:11Z</dc:date>
    </item>
    <item>
      <title>Re: Fitting beta-binomial overdispersed model with random effects (repeated measures)</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Fitting-beta-binomial-overdispersed-model-with-random-effects/m-p/949517#M47485</link>
      <description>&lt;P&gt;Hello -&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you for this suggestion. I have the NLMIXED model working for a beta-binomial&amp;nbsp; with random effects (intercept) but for some datasets where the N is large (&amp;gt;150) it is failing to compute I think due to the factorial and beta functions in the beta-binomial distribution.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The non-random effects Beta-binomial models works in PROC FMM but not in PROC NLMIXED (no random effects) when counts (N) are large. I have tried different optimization methods and nothing works.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Any suggestions ?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 30 Oct 2024 20:54:36 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Fitting-beta-binomial-overdispersed-model-with-random-effects/m-p/949517#M47485</guid>
      <dc:creator>blf</dc:creator>
      <dc:date>2024-10-30T20:54:36Z</dc:date>
    </item>
    <item>
      <title>Re: Fitting beta-binomial overdispersed model with random effects (repeated measures)</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Fitting-beta-binomial-overdispersed-model-with-random-effects/m-p/949520#M47486</link>
      <description>&lt;P&gt;When you coded the log likelihood, this might result if you used LOG(GAMMA(...)) instead of the LGAMMA function as shown in the examples I referred to earlier.&lt;/P&gt;</description>
      <pubDate>Wed, 30 Oct 2024 21:33:03 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Fitting-beta-binomial-overdispersed-model-with-random-effects/m-p/949520#M47486</guid>
      <dc:creator>StatDave</dc:creator>
      <dc:date>2024-10-30T21:33:03Z</dc:date>
    </item>
    <item>
      <title>Re: Fitting beta-binomial overdispersed model with random effects (repeated measures)</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Fitting-beta-binomial-overdispersed-model-with-random-effects/m-p/951200#M47556</link>
      <description>&lt;P&gt;I have no idea on the solution to this specific question, but would like to recommend the only monograph I have found on building overdispersion models with SAS: &lt;A href="https://www.amazon.com/Overdispersion-Models-SAS-Jorge-Morel/dp/1607648814/ref=sr_1_1?crid=32YWL44SNFIGW&amp;amp;dib=eyJ2IjoiMSJ9.z1V0v0TSCZ6s2yv7HhrO1g.1tmITRQIqyD5oyD5TGzJmuau03mm0V1ls2t7M22_vnc&amp;amp;dib_tag=se&amp;amp;keywords=overdispersion+models+sas&amp;amp;qid=1732012312&amp;amp;sprefix=overdispersion+models+s%2Caps%2C360&amp;amp;sr=8-1" target="_blank"&gt;Amazon.com: Overdispersion Models in SAS: 9781607648819: Morel PhD, Jorge G., Neerchal PhD, Nagaraj: Books&lt;/A&gt;. I have read part of it and am not sure whether it contains the answer to your specific question. But I am sure it is a good monograph for those who wish to have a systematic understanding on this field.&lt;/P&gt;</description>
      <pubDate>Tue, 19 Nov 2024 10:32:54 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Fitting-beta-binomial-overdispersed-model-with-random-effects/m-p/951200#M47556</guid>
      <dc:creator>Season</dc:creator>
      <dc:date>2024-11-19T10:32:54Z</dc:date>
    </item>
  </channel>
</rss>

