<?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: GEE modelling using proc genmod interpretation in Statistical Procedures</title>
    <link>https://communities.sas.com/t5/Statistical-Procedures/GEE-modelling-using-proc-genmod-interpretation/m-p/821108#M40619</link>
    <description>&lt;P&gt;You will probably want to remove "year" from the CLASS statement.&amp;nbsp; This would fit year as a linear continuous variable (=trend).&amp;nbsp; If you need ORs at specific years, you can use an LSMEANS statement with AT= and ODDSRATIO options.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I don't see "covariate" in your MODEL statement, so I am at a bit of a loss to see how you got an estimate for it.&amp;nbsp; In any case, if you believe the covariate may affect the trend, try fitting the following&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;ods output GEEEmpPEst=output;
proc genmod data = have descending;
class id year (ref="2005") covariate (ref="0");
model case =year covariate covariate*year / dist = bin
                              link = id
                              lrci;
repeated subject = id;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;The result for covariate will indicate change in the intercept, and covariate*year will give the difference in the slopes compared to the reference value of covariate.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;SteveDenham&lt;/P&gt;</description>
    <pubDate>Thu, 30 Jun 2022 12:21:47 GMT</pubDate>
    <dc:creator>SteveDenham</dc:creator>
    <dc:date>2022-06-30T12:21:47Z</dc:date>
    <item>
      <title>GEE modelling using proc genmod interpretation</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/GEE-modelling-using-proc-genmod-interpretation/m-p/821073#M40617</link>
      <description>&lt;P&gt;Hi All,&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am sorry for a novice question, but i am having trouble interpreting the output of my proc genmod...&lt;/P&gt;&lt;P&gt;I am modelling the probability of being a case (case = 1, non case = 0) and estimating the trend in cases through a 15 year period of non-independent data using proc genmod and GEE modelling. I have one covariate, that might explain the trend.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=""&gt;ods output GEEEmpPEst=output;
proc genmod data = have descending;
class id year (ref="2005") covariate (ref="0");
model case =year / dist = bin
                              link = id
                              lrci;
repeated subject = id;
run;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;My output is an&lt;/P&gt;&lt;P&gt;intercept estimate, estimates for every year, estimates for the covariate.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;But which estimate is the trend estimate? Meaning the trend in cases increases XX% pr year.&lt;/P&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;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 30 Jun 2022 07:47:52 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/GEE-modelling-using-proc-genmod-interpretation/m-p/821073#M40617</guid>
      <dc:creator>lone0708</dc:creator>
      <dc:date>2022-06-30T07:47:52Z</dc:date>
    </item>
    <item>
      <title>Re: GEE modelling using proc genmod interpretation</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/GEE-modelling-using-proc-genmod-interpretation/m-p/821108#M40619</link>
      <description>&lt;P&gt;You will probably want to remove "year" from the CLASS statement.&amp;nbsp; This would fit year as a linear continuous variable (=trend).&amp;nbsp; If you need ORs at specific years, you can use an LSMEANS statement with AT= and ODDSRATIO options.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I don't see "covariate" in your MODEL statement, so I am at a bit of a loss to see how you got an estimate for it.&amp;nbsp; In any case, if you believe the covariate may affect the trend, try fitting the following&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;ods output GEEEmpPEst=output;
proc genmod data = have descending;
class id year (ref="2005") covariate (ref="0");
model case =year covariate covariate*year / dist = bin
                              link = id
                              lrci;
repeated subject = id;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;The result for covariate will indicate change in the intercept, and covariate*year will give the difference in the slopes compared to the reference value of covariate.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;SteveDenham&lt;/P&gt;</description>
      <pubDate>Thu, 30 Jun 2022 12:21:47 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/GEE-modelling-using-proc-genmod-interpretation/m-p/821108#M40619</guid>
      <dc:creator>SteveDenham</dc:creator>
      <dc:date>2022-06-30T12:21:47Z</dc:date>
    </item>
    <item>
      <title>Re: GEE modelling using proc genmod interpretation</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/GEE-modelling-using-proc-genmod-interpretation/m-p/821153#M40625</link>
      <description>Thank you for the answer,&lt;BR /&gt;When i remove year from the statement, I get one estimate for the intercept, one for year and one for the covariate.&lt;BR /&gt;Is the intercept = trend estimate ?&lt;BR /&gt;</description>
      <pubDate>Thu, 30 Jun 2022 14:47:39 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/GEE-modelling-using-proc-genmod-interpretation/m-p/821153#M40625</guid>
      <dc:creator>lone0708</dc:creator>
      <dc:date>2022-06-30T14:47:39Z</dc:date>
    </item>
    <item>
      <title>Re: GEE modelling using proc genmod interpretation</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/GEE-modelling-using-proc-genmod-interpretation/m-p/821166#M40626</link>
      <description>No. The Year parameter estimate is the trend in the case probability over time.</description>
      <pubDate>Thu, 30 Jun 2022 15:28:46 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/GEE-modelling-using-proc-genmod-interpretation/m-p/821166#M40626</guid>
      <dc:creator>StatDave</dc:creator>
      <dc:date>2022-06-30T15:28:46Z</dc:date>
    </item>
  </channel>
</rss>

