<?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: Interpreting GLIMMIX logit interaction term (continuous*categorical) in Statistical Procedures</title>
    <link>https://communities.sas.com/t5/Statistical-Procedures/Interpreting-GLIMMIX-logit-interaction-term-continuous/m-p/168006#M8762</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Do whatever it takes to get a copy of Walt Stroup's &lt;EM&gt;Generalized Linear Mixed Models.&lt;/EM&gt; Then turn to page 220 where he starts a section on Analysis of Covariance.&amp;nbsp; This will walk you through how to handle covariate(continuous) by treatment(categorical) interactions and specific tests at various levels of the continuous variable.&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>Fri, 03 Oct 2014 18:19:18 GMT</pubDate>
    <dc:creator>SteveDenham</dc:creator>
    <dc:date>2014-10-03T18:19:18Z</dc:date>
    <item>
      <title>Interpreting GLIMMIX logit interaction term (continuous*categorical)</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Interpreting-GLIMMIX-logit-interaction-term-continuous/m-p/168005#M8761</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;I am using PROC GLIMMIX to perform a multilevel logistic regression.&amp;nbsp; I am interested in a number of interaction effects.&amp;nbsp; Breaking down interactions for categorical*categorical terms is relatively straightforward with LSMEANS; however, I have not been able to find a resource which details how to break down custom hypotheses for continuous*categorical interaction terms.&amp;nbsp;&amp;nbsp; Does anyone have suggestions for resources that may detail how to explore these types of interactions for a PROC GLIMMIX logit model?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 01 Oct 2014 14:09:10 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Interpreting-GLIMMIX-logit-interaction-term-continuous/m-p/168005#M8761</guid>
      <dc:creator>mtaetntan</dc:creator>
      <dc:date>2014-10-01T14:09:10Z</dc:date>
    </item>
    <item>
      <title>Re: Interpreting GLIMMIX logit interaction term (continuous*categorical)</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Interpreting-GLIMMIX-logit-interaction-term-continuous/m-p/168006#M8762</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Do whatever it takes to get a copy of Walt Stroup's &lt;EM&gt;Generalized Linear Mixed Models.&lt;/EM&gt; Then turn to page 220 where he starts a section on Analysis of Covariance.&amp;nbsp; This will walk you through how to handle covariate(continuous) by treatment(categorical) interactions and specific tests at various levels of the continuous variable.&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>Fri, 03 Oct 2014 18:19:18 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Interpreting-GLIMMIX-logit-interaction-term-continuous/m-p/168006#M8762</guid>
      <dc:creator>SteveDenham</dc:creator>
      <dc:date>2014-10-03T18:19:18Z</dc:date>
    </item>
    <item>
      <title>Re: Interpreting GLIMMIX logit interaction term (continuous*categorical)</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Interpreting-GLIMMIX-logit-interaction-term-continuous/m-p/168007#M8763</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;I'm sorry to use this section to my own interest. But I have the same question and I can not find the right command ...&lt;/P&gt;&lt;P&gt;This is my model on avian reproduction. Where age1 is a continuous variable(1, 2, 3)&amp;nbsp; and sex is categorical (1= male, 2= female).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;proc glimmix data=Reproduction INFOCRIT=PQ&amp;nbsp; noreml;&lt;/P&gt;&lt;P&gt;class Sex nest Age2 ring;&lt;/P&gt;&lt;P&gt;model &lt;SPAN style="font-size: 13.3333330154419px;"&gt;Reproduction &lt;/SPAN&gt; (Event="1") = Sex Age1 &lt;SPAN style="font-size: 13.3333330154419px;"&gt;Sex*Age1&lt;/SPAN&gt;/dist= binomial link=logit solution cl;&lt;/P&gt;&lt;P&gt;random Age2/ subject=ring (nest) type=cs residual;&lt;/P&gt;&lt;P&gt;ESTIMATE 'sex 1 vs 2 at age&amp;nbsp; 1 in' sex -1 1 0 &lt;SPAN style="font-size: 13.3333330154419px;"&gt;Sex*Age1&lt;/SPAN&gt; -1 1 0 ;&lt;/P&gt;&lt;P&gt;ESTIMATE 'sex 1 vs 2 at age&amp;nbsp; 2 in' sex -1 1 0 &lt;SPAN style="font-size: 13.3333330154419px;"&gt;Sex*Age1&lt;/SPAN&gt; -2 2 0 ;&lt;/P&gt;&lt;P&gt;ESTIMATE 'sex 1 vs 2 at age&amp;nbsp; 3 in' sex -1 1 0 &lt;SPAN style="font-size: 13.3333330154419px;"&gt;Sex*Age1&lt;/SPAN&gt; -3 3 0 ;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333330154419px;"&gt;Could you tell me the correct command to see estimates of the interaction "&lt;SPAN style="font-size: 13.3333330154419px;"&gt;Sex*Age1"&lt;/SPAN&gt;? The estimates that I have shown in my model, showed me only sex differences for each age, but I need male differences along age. I'm sorry for my limited knowledge of SAS.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333330154419px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333330154419px;"&gt;Thank you very much.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333330154419px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333330154419px;"&gt;All the best,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333330154419px;"&gt;Jaime&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 24 Aug 2015 12:02:02 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Interpreting-GLIMMIX-logit-interaction-term-continuous/m-p/168007#M8763</guid>
      <dc:creator>SpanishPhD</dc:creator>
      <dc:date>2015-08-24T12:02:02Z</dc:date>
    </item>
    <item>
      <title>Re: Interpreting GLIMMIX logit interaction term (continuous*categorical)</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Interpreting-GLIMMIX-logit-interaction-term-continuous/m-p/168008#M8764</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Search some old posts. This has come up several times in the past. Here is one place to start:&lt;/P&gt;&lt;P&gt;&lt;A __default_attr="283388" __jive_macro_name="message" class="jive_macro jive_macro_message" href="https://communities.sas.com/"&gt;&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 24 Aug 2015 13:01:12 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Interpreting-GLIMMIX-logit-interaction-term-continuous/m-p/168008#M8764</guid>
      <dc:creator>lvm</dc:creator>
      <dc:date>2015-08-24T13:01:12Z</dc:date>
    </item>
    <item>
      <title>Re: Interpreting GLIMMIX logit interaction term (continuous*categorical)</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Interpreting-GLIMMIX-logit-interaction-term-continuous/m-p/168009#M8765</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I'm sorry but I can not understand how this works. In my case it is an interaction between a continuous and categorical &lt;SPAN style="font-size: 13.3333330154419px;"&gt;variable&lt;/SPAN&gt;, and I also used proc GLIMMIX with dist= binomial link=logit. Although the method could be similar (&lt;SPAN style="font-size: 13.3333330154419px;"&gt;continuous*&lt;SPAN style="font-size: 13.3333330154419px;"&gt;continuous)&lt;/SPAN&gt;&lt;/SPAN&gt;, it is difficult to understand because my little knowledge in SAS. In my particular model, what should I use?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you very much,&lt;/P&gt;&lt;P&gt;Jaime&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 24 Aug 2015 15:06:32 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Interpreting-GLIMMIX-logit-interaction-term-continuous/m-p/168009#M8765</guid>
      <dc:creator>SpanishPhD</dc:creator>
      <dc:date>2015-08-24T15:06:32Z</dc:date>
    </item>
    <item>
      <title>Re: Interpreting GLIMMIX logit interaction term (continuous*categorical)</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Interpreting-GLIMMIX-logit-interaction-term-continuous/m-p/168010#M8766</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;THis was just an example. Search this website for interaction of continuous and categorical. There are several posts.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 24 Aug 2015 15:24:03 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Interpreting-GLIMMIX-logit-interaction-term-continuous/m-p/168010#M8766</guid>
      <dc:creator>lvm</dc:creator>
      <dc:date>2015-08-24T15:24:03Z</dc:date>
    </item>
    <item>
      <title>Re: Interpreting GLIMMIX logit interaction term (continuous*categorical)</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Interpreting-GLIMMIX-logit-interaction-term-continuous/m-p/168011#M8767</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I don't quite understand your question, but I think you want to know the mean difference between age1 of 1 and 3 (for example) for males. The third contrast will do this, but I show the first two so you can see the steps.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;estimate 'm age 1' int 1 sex 1 0 age1&amp;nbsp; 1&amp;nbsp; sex*age1 1;&lt;/P&gt;&lt;P&gt;estimate 'm age 3' int 1 sex 1 0 age1&amp;nbsp; 3&amp;nbsp; sex*age1 3;&lt;/P&gt;&lt;P&gt;estimate 'm, age 3-1&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ' age1&amp;nbsp; 2&amp;nbsp; sex*age1 2;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Note the the last estimate is the difference between the first two (which give you means for age 1 and age 3, both for males only [the first level of sex]). WIth the difference, terms like the intercept and sex main effect cancel.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;By the way, there are only two levels to your sex*age1 interaction, so your estimate statements will not work.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 24 Aug 2015 19:05:20 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Interpreting-GLIMMIX-logit-interaction-term-continuous/m-p/168011#M8767</guid>
      <dc:creator>lvm</dc:creator>
      <dc:date>2015-08-24T19:05:20Z</dc:date>
    </item>
  </channel>
</rss>

