<?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: regression model when the dependent variable is count in Statistical Procedures</title>
    <link>https://communities.sas.com/t5/Statistical-Procedures/regression-model-when-the-dependent-variable-is-count/m-p/937991#M46800</link>
    <description>&lt;P&gt;&lt;SPAN&gt;If, at the subject level, the response is binary (such as yes/no, positive/negative) so that your data are aggregated binary data and you have the numerator and denominator counts making up the proportions, then you can fit a logistic model in procedures such as LOGISTIC, PROBIT, GENMOD, GAM, ADAPTIVEREG and others by using the &lt;EM&gt;events/trials&lt;/EM&gt; syntax in the MODEL statement. The model assumes that the proportions represent a set of independent Bernoulli trials and have a binomial distribution. See the example in the Getting Started section of the PROC LOGISTIC documentation. But if your data are counts of some event over a period of time (such as person-years) such that the ratio of count/time is a rate that can exceed 1, then you would typically model the rate using a Poisson or negative binomial model with the log of the time variable as an offset. See the Poisson Regression example in the Getting Started section of the PROC GENMOD documentation.&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;</description>
    <pubDate>Thu, 01 Aug 2024 17:03:00 GMT</pubDate>
    <dc:creator>StatDave</dc:creator>
    <dc:date>2024-08-01T17:03:00Z</dc:date>
    <item>
      <title>regression model when the dependent variable is count</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/regression-model-when-the-dependent-variable-is-count/m-p/937882#M46794</link>
      <description>&lt;P&gt;when the dependent variable is count (output of proc freq) and most of the independent variables are also count, what regression model is ideal to use. Also, what SAS procedure should be used?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;example: Instead of individual data, grouped data(like county wise) data is available.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 01 Aug 2024 08:46:26 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/regression-model-when-the-dependent-variable-is-count/m-p/937882#M46794</guid>
      <dc:creator>mydamj</dc:creator>
      <dc:date>2024-08-01T08:46:26Z</dc:date>
    </item>
    <item>
      <title>Re: regression model when the dependent variable is count</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/regression-model-when-the-dependent-variable-is-count/m-p/937978#M46798</link>
      <description>&lt;UL class="lia-list-style-type-square"&gt;
&lt;LI&gt;Art or science? Choosing the right regression model&lt;BR /&gt;By Udo Sglavo on October 11, 2021 &lt;BR /&gt;&lt;A href="https://blogs.sas.com/content/subconsciousmusings/2021/10/11/art-or-science-choosing-the-right-regression-model/" target="_blank"&gt;https://blogs.sas.com/content/subconsciousmusings/2021/10/11/art-or-science-choosing-the-right-regression-model/&lt;/A&gt;&lt;/LI&gt;
&lt;LI&gt;Which regression technique is appropriate for my data?&lt;BR /&gt;By Udo Sglavo on October 5, 2021 &lt;BR /&gt;&lt;A href="https://blogs.sas.com/content/subconsciousmusings/2021/10/05/which-regression-technique-is-appropriate-for-my-data/" target="_blank"&gt;https://blogs.sas.com/content/subconsciousmusings/2021/10/05/which-regression-technique-is-appropriate-for-my-data/&lt;/A&gt;&lt;/LI&gt;
&lt;LI&gt;SAS Global Forum 2008 -- Paper 371-2008&lt;BR /&gt;Count Data Models in SAS®&lt;BR /&gt;WenSui Liu &amp;amp; Jimmy Cela , ChoicePoint Precision Marketing, Alpharetta, GA&lt;BR /&gt;&lt;A href="https://support.sas.com/resources/papers/proceedings/pdfs/sgf2008/371-2008.pdf" target="_blank"&gt;https://support.sas.com/resources/papers/proceedings/pdfs/sgf2008/371-2008.pdf&lt;/A&gt;&lt;/LI&gt;
&lt;LI&gt;Sample 59236: Fitting Zero-Inflated Count Data Models by Using PROC GENMOD&lt;BR /&gt;&lt;A href="https://support.sas.com/kb/59/236.html" target="_blank"&gt;https://support.sas.com/kb/59/236.html&lt;/A&gt;&lt;/LI&gt;
&lt;LI&gt;Or look at PROC COUNTREG or PROC CNTSELECT.&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;BR, Koen&lt;/P&gt;</description>
      <pubDate>Thu, 01 Aug 2024 15:42:15 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/regression-model-when-the-dependent-variable-is-count/m-p/937978#M46798</guid>
      <dc:creator>sbxkoenk</dc:creator>
      <dc:date>2024-08-01T15:42:15Z</dc:date>
    </item>
    <item>
      <title>Re: regression model when the dependent variable is count</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/regression-model-when-the-dependent-variable-is-count/m-p/937991#M46800</link>
      <description>&lt;P&gt;&lt;SPAN&gt;If, at the subject level, the response is binary (such as yes/no, positive/negative) so that your data are aggregated binary data and you have the numerator and denominator counts making up the proportions, then you can fit a logistic model in procedures such as LOGISTIC, PROBIT, GENMOD, GAM, ADAPTIVEREG and others by using the &lt;EM&gt;events/trials&lt;/EM&gt; syntax in the MODEL statement. The model assumes that the proportions represent a set of independent Bernoulli trials and have a binomial distribution. See the example in the Getting Started section of the PROC LOGISTIC documentation. But if your data are counts of some event over a period of time (such as person-years) such that the ratio of count/time is a rate that can exceed 1, then you would typically model the rate using a Poisson or negative binomial model with the log of the time variable as an offset. See the Poisson Regression example in the Getting Started section of the PROC GENMOD documentation.&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 01 Aug 2024 17:03:00 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/regression-model-when-the-dependent-variable-is-count/m-p/937991#M46800</guid>
      <dc:creator>StatDave</dc:creator>
      <dc:date>2024-08-01T17:03:00Z</dc:date>
    </item>
  </channel>
</rss>

