<?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 plot interaction effect of logistic GEE? in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/How-to-plot-interaction-effect-of-logistic-GEE/m-p/181790#M303142</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Have you tried the ODS Graphics plots associated with GENMOD?&amp;nbsp; What happens with PLOTS=PREDICTED?&amp;nbsp; You may have to re-order as this gives the predicted values as a function of observation number.&amp;nbsp; Otherwise, this will turn into a project involving either the OUTPUT statement or ODS OUTPUT, followed by SGPLOT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Steve Denham&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 03 Jun 2014 12:15:46 GMT</pubDate>
    <dc:creator>SteveDenham</dc:creator>
    <dc:date>2014-06-03T12:15:46Z</dc:date>
    <item>
      <title>How to plot interaction effect of logistic GEE?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-plot-interaction-effect-of-logistic-GEE/m-p/181789#M303141</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P class="MsoNormal" style="line-height: normal;"&gt;&lt;SPAN style="font-size: 12.0pt; font-family: 'Times New Roman','serif'; mso-fareast-font-family: 'Times New Roman';"&gt;Apologies for cross-posting&lt;/SPAN&gt;&lt;/P&gt;&lt;P class="MsoNormal" style="line-height: normal;"&gt;&lt;/P&gt;&lt;P class="MsoNormal" style="line-height: normal;"&gt;&lt;SPAN style="font-size: 12.0pt; font-family: 'Times New Roman','serif'; mso-fareast-font-family: 'Times New Roman';"&gt;Hello,&lt;/SPAN&gt;&lt;/P&gt;&lt;P class="MsoNormal" style="line-height: normal;"&gt;&lt;/P&gt;&lt;P class="MsoNormal" style="line-height: normal;"&gt;&lt;SPAN style="font-size: 12.0pt; font-family: 'Times New Roman','serif'; mso-fareast-font-family: 'Times New Roman';"&gt;I have run an interaction effect using logistic GEE on PROC GENMOD. I’ve used the following SAS codes to run this analysis:-&lt;/SPAN&gt;&lt;/P&gt;&lt;P class="MsoNormal" style="line-height: normal;"&gt;&lt;/P&gt;&lt;P class="MsoNormal" style="line-height: normal;"&gt;&lt;SPAN style="font-size: 12.0pt; font-family: 'Times New Roman','serif'; mso-fareast-font-family: 'Times New Roman';"&gt;PROC GENMOD DATA=my_filename descending;&lt;/SPAN&gt;&lt;/P&gt;&lt;P class="MsoNormal" style="line-height: normal;"&gt;&lt;SPAN style="font-size: 12.0pt; font-family: 'Times New Roman','serif'; mso-fareast-font-family: 'Times New Roman';"&gt;CLASS obs_number company_id;&lt;/SPAN&gt;&lt;/P&gt;&lt;P class="MsoNormal" style="line-height: normal;"&gt;&lt;SPAN style="font-size: 12.0pt; font-family: 'Times New Roman','serif'; mso-fareast-font-family: 'Times New Roman';"&gt;model completed = CAR*CEO_Pay&lt;/SPAN&gt;&lt;/P&gt;&lt;P class="MsoNormal" style="line-height: normal;"&gt;&lt;SPAN style="font-size: 12.0pt; font-family: 'Times New Roman','serif'; mso-fareast-font-family: 'Times New Roman';"&gt;CAR CEO_Pay&lt;/SPAN&gt;&lt;/P&gt;&lt;P class="MsoNormal" style="line-height: normal;"&gt;&lt;SPAN style="font-size: 12.0pt; font-family: 'Times New Roman','serif'; mso-fareast-font-family: 'Times New Roman';"&gt;covariate1 covariate2&lt;/SPAN&gt;&lt;/P&gt;&lt;P class="MsoNormal" style="line-height: normal;"&gt;&lt;SPAN style="font-size: 12.0pt; font-family: 'Times New Roman','serif'; mso-fareast-font-family: 'Times New Roman';"&gt;Year1993 Year1994 Year1995 Year1996 Year1997&lt;/SPAN&gt;&lt;/P&gt;&lt;P class="MsoNormal" style="line-height: normal;"&gt;&lt;SPAN style="font-size: 12.0pt; font-family: 'Times New Roman','serif'; mso-fareast-font-family: 'Times New Roman';"&gt;/DIST=bin LINK=logit;&lt;/SPAN&gt;&lt;/P&gt;&lt;P class="MsoNormal" style="line-height: normal;"&gt;&lt;SPAN style="font-size: 12.0pt; font-family: 'Times New Roman','serif'; mso-fareast-font-family: 'Times New Roman';"&gt;REPEATED subject=company_id /TYPE=ar(1) CORRW covb ;&lt;/SPAN&gt;&lt;/P&gt;&lt;P class="MsoNormal" style="line-height: normal;"&gt;&lt;SPAN style="font-size: 12.0pt; font-family: 'Times New Roman','serif'; mso-fareast-font-family: 'Times New Roman';"&gt;run;&lt;/SPAN&gt;&lt;/P&gt;&lt;P class="MsoNormal" style="line-height: normal;"&gt;&lt;/P&gt;&lt;P class="MsoNormal" style="line-height: normal;"&gt;&lt;SPAN style="font-size: 12.0pt; font-family: 'Times New Roman','serif'; mso-fareast-font-family: 'Times New Roman';"&gt;Both CAR and CEO_Pay are continuous independent variables.&lt;/SPAN&gt;&lt;/P&gt;&lt;P class="MsoNormal" style="line-height: normal;"&gt;&lt;SPAN style="font-size: 12.0pt; font-family: 'Times New Roman','serif'; mso-fareast-font-family: 'Times New Roman';"&gt;The dependent variable “completed” is a binary coded variable (completed acquisition=1, abandoned acquisition=0).&lt;/SPAN&gt;&lt;/P&gt;&lt;P class="MsoNormal" style="line-height: normal;"&gt;&lt;SPAN style="font-size: 12.0pt; font-family: 'Times New Roman','serif'; mso-fareast-font-family: 'Times New Roman';"&gt;Covariate1 is a continuous control variable.&lt;/SPAN&gt;&lt;/P&gt;&lt;P class="MsoNormal" style="line-height: normal;"&gt;&lt;SPAN style="font-size: 12.0pt; font-family: 'Times New Roman','serif'; mso-fareast-font-family: 'Times New Roman';"&gt;Covariate2 is a binary control variable.&lt;/SPAN&gt;&lt;/P&gt;&lt;P class="MsoNormal" style="line-height: normal;"&gt;&lt;/P&gt;&lt;P class="MsoNormal" style="line-height: normal;"&gt;&lt;SPAN style="font-size: 12.0pt; font-family: 'Times New Roman','serif'; mso-fareast-font-family: 'Times New Roman';"&gt;I need to graph the interaction between CAR and CEO_Pay (CAR*CEO_Pay) but I’m struggling to determine the correct SAS codes for graphing this interaction. I have read up many SAS articles but have not found something that meets my needs.&lt;/SPAN&gt;&lt;/P&gt;&lt;P class="MsoNormal" style="line-height: normal;"&gt;&lt;/P&gt;&lt;P class="MsoNormal" style="line-height: normal;"&gt;&lt;SPAN style="font-size: 12.0pt; font-family: 'Times New Roman','serif'; mso-fareast-font-family: 'Times New Roman';"&gt;I would really appreciate if you’d please point me in the right direction by providing a sample SAS code to graph the above interaction as well as any sources/literature that deals with this issue. I am using SAS 9.3.&lt;/SPAN&gt;&lt;/P&gt;&lt;P class="MsoNormal" style="line-height: normal;"&gt;&lt;/P&gt;&lt;P class="MsoNormal" style="line-height: normal;"&gt;&lt;SPAN style="font-size: 12.0pt; font-family: 'Times New Roman','serif'; mso-fareast-font-family: 'Times New Roman';"&gt;Thank you in advance for your assistance!&lt;/SPAN&gt;&lt;/P&gt;&lt;P class="MsoNormal" style="line-height: normal;"&gt;&lt;/P&gt;&lt;P class="MsoNormal" style="line-height: normal;"&gt;&lt;SPAN style="font-size: 12.0pt; font-family: 'Times New Roman','serif'; mso-fareast-font-family: 'Times New Roman';"&gt;Best,&lt;/SPAN&gt;&lt;/P&gt;&lt;P class="MsoNormal" style="line-height: normal;"&gt;&lt;SPAN style="font-size: 12.0pt; font-family: 'Times New Roman','serif'; mso-fareast-font-family: 'Times New Roman';"&gt;Elizabeth&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 03 Jun 2014 02:30:15 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-plot-interaction-effect-of-logistic-GEE/m-p/181789#M303141</guid>
      <dc:creator>SASNovice2014</dc:creator>
      <dc:date>2014-06-03T02:30:15Z</dc:date>
    </item>
    <item>
      <title>Re: How to plot interaction effect of logistic GEE?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-plot-interaction-effect-of-logistic-GEE/m-p/181790#M303142</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Have you tried the ODS Graphics plots associated with GENMOD?&amp;nbsp; What happens with PLOTS=PREDICTED?&amp;nbsp; You may have to re-order as this gives the predicted values as a function of observation number.&amp;nbsp; Otherwise, this will turn into a project involving either the OUTPUT statement or ODS OUTPUT, followed by SGPLOT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Steve Denham&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 03 Jun 2014 12:15:46 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-plot-interaction-effect-of-logistic-GEE/m-p/181790#M303142</guid>
      <dc:creator>SteveDenham</dc:creator>
      <dc:date>2014-06-03T12:15:46Z</dc:date>
    </item>
    <item>
      <title>Re: How to plot interaction effect of logistic GEE?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-plot-interaction-effect-of-logistic-GEE/m-p/181791#M303143</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks, Steve! I'll check these out.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Jun 2014 04:13:19 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-plot-interaction-effect-of-logistic-GEE/m-p/181791#M303143</guid>
      <dc:creator>SASNovice2014</dc:creator>
      <dc:date>2014-06-04T04:13:19Z</dc:date>
    </item>
  </channel>
</rss>

