<?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: How to perfrom mixed effect model with poisson regression with robust estimator? in Statistical Procedures</title>
    <link>https://communities.sas.com/t5/Statistical-Procedures/How-to-perfrom-mixed-effect-model-with-poisson-regression-with/m-p/862171#M42616</link>
    <description>Try: estimate "RR group" group 1 -1/cl ilink;</description>
    <pubDate>Fri, 03 Mar 2023 16:58:10 GMT</pubDate>
    <dc:creator>hongjie76</dc:creator>
    <dc:date>2023-03-03T16:58:10Z</dc:date>
    <item>
      <title>How to perfrom mixed effect model with poisson regression with robust estimator?</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/How-to-perfrom-mixed-effect-model-with-poisson-regression-with/m-p/831849#M41177</link>
      <description>&lt;P&gt;Dear all, I have solve using proc genmod to perform modified poisson regression to generate Risk ratio,&lt;/P&gt;
&lt;P&gt;here, how can I adjusted the site effect, would the following program appropriate?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc genmod data = stroke;
class enroll_order group(desc) score(desc) IVT sites/PARAM=GLM;
model score = group ivt sites/ dist=poisson link=log covb corrb;
repeated subject = enroll_order/type = un;
estimate "beta" group 1 -1/exp;
lsmeans group/diff exp cl;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Besides, how can I use mixed model to get risk ratio with sites as random effect?&lt;/P&gt;
&lt;P&gt;I'm confuse to get the RR ratio, and the class group(desc) seems to wrong in proc glimmix,&lt;/P&gt;
&lt;P&gt;How can I calculate RR with robust estimator as Zou.et(2004)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;proc glimmix data=stroke EMPIRICAL;&lt;BR /&gt;class site group;&lt;BR /&gt;model Score= group/ dist=poisson link=log SOLUTION;&lt;BR /&gt;random site/ subject= enroll_order;&lt;BR /&gt;run;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 05 Sep 2022 17:53:53 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/How-to-perfrom-mixed-effect-model-with-poisson-regression-with/m-p/831849#M41177</guid>
      <dc:creator>Diels_O</dc:creator>
      <dc:date>2022-09-05T17:53:53Z</dc:date>
    </item>
    <item>
      <title>Re: How to perfrom mixed effect model with poisson regression with robust estimator?</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/How-to-perfrom-mixed-effect-model-with-poisson-regression-with/m-p/831932#M41179</link>
      <description>&lt;P&gt;For your GLIMMIX code, I would add enroll_order to the CLASS statement. I am somewhat baffled by the GENMOD code, though.&amp;nbsp; The CLASS statement there looks to me as if it treats your response variable (score) as a multinomial.&amp;nbsp; Given that, I am not sure that the data follow a Poisson distribution, but rather follow an ordinal multinomial distribution.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;SteveDenham&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 06 Sep 2022 13:32:54 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/How-to-perfrom-mixed-effect-model-with-poisson-regression-with/m-p/831932#M41179</guid>
      <dc:creator>SteveDenham</dc:creator>
      <dc:date>2022-09-06T13:32:54Z</dc:date>
    </item>
    <item>
      <title>Re: How to perfrom mixed effect model with poisson regression with robust estimator?</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/How-to-perfrom-mixed-effect-model-with-poisson-regression-with/m-p/831936#M41181</link>
      <description>&lt;P&gt;Thank you very much! Now I add it into a class statement, and how can I estimate the RR ratio using the output of glimmix?&amp;nbsp; Thank you again!&lt;/P&gt;</description>
      <pubDate>Tue, 06 Sep 2022 13:31:09 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/How-to-perfrom-mixed-effect-model-with-poisson-regression-with/m-p/831936#M41181</guid>
      <dc:creator>Diels_O</dc:creator>
      <dc:date>2022-09-06T13:31:09Z</dc:date>
    </item>
    <item>
      <title>Re: How to perfrom mixed effect model with poisson regression with robust estimator?</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/How-to-perfrom-mixed-effect-model-with-poisson-regression-with/m-p/831941#M41183</link>
      <description>&lt;P&gt;See &lt;A href="http://support.sas.com/kb/23003" target="_self"&gt;this note&lt;/A&gt; for Zou's Poisson method. Note that the response must be binary, not multi-level to do this - a relative risk is a ratio of probabilities of the event level of a binary response. In the note, it is shown using GENMOD, but GLIMMIX could also be used.&lt;/P&gt;</description>
      <pubDate>Tue, 06 Sep 2022 13:42:06 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/How-to-perfrom-mixed-effect-model-with-poisson-regression-with/m-p/831941#M41183</guid>
      <dc:creator>StatDave</dc:creator>
      <dc:date>2022-09-06T13:42:06Z</dc:date>
    </item>
    <item>
      <title>Re: How to perfrom mixed effect model with poisson regression with robust estimator?</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/How-to-perfrom-mixed-effect-model-with-poisson-regression-with/m-p/831979#M41185</link>
      <description>&lt;P&gt;Thank you Dave! I met problem with the lsmeans and the estimate, How can I get RR and it's CL in proc glimmix?&lt;/P&gt;
&lt;P&gt;The estimate seems to not provide exp function. Thank you again for your kind help!&lt;/P&gt;</description>
      <pubDate>Tue, 06 Sep 2022 16:25:43 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/How-to-perfrom-mixed-effect-model-with-poisson-regression-with/m-p/831979#M41185</guid>
      <dc:creator>Diels_O</dc:creator>
      <dc:date>2022-09-06T16:25:43Z</dc:date>
    </item>
    <item>
      <title>Re: How to perfrom mixed effect model with poisson regression with robust estimator?</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/How-to-perfrom-mixed-effect-model-with-poisson-regression-with/m-p/831983#M41186</link>
      <description>Steve, The code in the Genmod was introduced by Zou.et (2004) using the genmod to generate the modified poisson regression with robust estimator. The score was a binary variable , not a multinomial. Really thank you for your careful look.</description>
      <pubDate>Tue, 06 Sep 2022 16:49:12 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/How-to-perfrom-mixed-effect-model-with-poisson-regression-with/m-p/831983#M41186</guid>
      <dc:creator>Diels_O</dc:creator>
      <dc:date>2022-09-06T16:49:12Z</dc:date>
    </item>
    <item>
      <title>Re: How to perfrom mixed effect model with poisson regression with robust estimator?</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/How-to-perfrom-mixed-effect-model-with-poisson-regression-with/m-p/831996#M41189</link>
      <description>&lt;P&gt;Just omit the EXP option and then exponentiate the estimate and confidence limits manually.&lt;/P&gt;</description>
      <pubDate>Tue, 06 Sep 2022 17:31:30 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/How-to-perfrom-mixed-effect-model-with-poisson-regression-with/m-p/831996#M41189</guid>
      <dc:creator>StatDave</dc:creator>
      <dc:date>2022-09-06T17:31:30Z</dc:date>
    </item>
    <item>
      <title>Re: How to perfrom mixed effect model with poisson regression with robust estimator?</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/How-to-perfrom-mixed-effect-model-with-poisson-regression-with/m-p/862171#M42616</link>
      <description>Try: estimate "RR group" group 1 -1/cl ilink;</description>
      <pubDate>Fri, 03 Mar 2023 16:58:10 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/How-to-perfrom-mixed-effect-model-with-poisson-regression-with/m-p/862171#M42616</guid>
      <dc:creator>hongjie76</dc:creator>
      <dc:date>2023-03-03T16:58:10Z</dc:date>
    </item>
  </channel>
</rss>

