<?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: Problem with my glimmix model in Statistical Procedures</title>
    <link>https://communities.sas.com/t5/Statistical-Procedures/Problem-with-my-glimmix-model/m-p/489371#M25431</link>
    <description>&lt;P&gt;I did the proc freq as you suggested, but I do see only two results: Y and N.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Thu, 23 Aug 2018 19:07:54 GMT</pubDate>
    <dc:creator>yahoo0806</dc:creator>
    <dc:date>2018-08-23T19:07:54Z</dc:date>
    <item>
      <title>Problem with my glimmix model</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Problem-with-my-glimmix-model/m-p/489365#M25429</link>
      <description>&lt;P&gt;Hi all,&lt;/P&gt;&lt;P&gt;I recent run into a problem when I use proc glimmix, hope someone can help.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;the data I have is a cross over data, each subject can have treatment sequence as AB or BA, my output is a binary responder: depending on if the change from baseline (CHG) value is &amp;gt;= 3 or not. For example, if the CHG value is &amp;gt;= 3 then responder variable = Y otherwise response = N.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The response status (responder varaible) will be analyzed using a generalized linear mixed model for binomial data (or mixed effects logistic regression model) with the logit of the probability of response as the dependent variable, treatment and period as fixed effects and subject as random effect. The Kenward-Rogers adjustment will be used to compute the denominator degrees of freedom for the test of the fixed effect. Adaptive Gauss-Hermite quadrature will be used to approximate the marginal log likelihood (SAS procedure GLIMMIX and METHOD=QUAD).&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Below is the model I used:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Proc glimmix data=model METHOD=QUAD;&lt;BR /&gt;class&amp;nbsp;subject period treatment;&lt;BR /&gt;model&amp;nbsp;responder = period &lt;SPAN&gt;treatment&lt;/SPAN&gt;/ddfm=KENWARDROGER solution link=logit;&lt;BR /&gt;random &lt;SPAN&gt;subject&lt;/SPAN&gt;;&lt;BR /&gt;lsmeans &lt;SPAN&gt;treatment&lt;/SPAN&gt; / cl ilink;&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The problem I run into is SAS gives me the following error message:&lt;/P&gt;&lt;P&gt;ERROR: For the multinomial distribution only the following links are possible: CUMLOGIT, CUMPROBIT, CUMLOGLOG, CUMCLL, GLOGIT.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Do you know why? and can you please let me know how I should fix my model?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Many thanks in advance!&lt;/P&gt;</description>
      <pubDate>Thu, 23 Aug 2018 18:41:50 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Problem-with-my-glimmix-model/m-p/489365#M25429</guid>
      <dc:creator>yahoo0806</dc:creator>
      <dc:date>2018-08-23T18:41:50Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with my glimmix model</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Problem-with-my-glimmix-model/m-p/489367#M25430</link>
      <description>&lt;P&gt;I think SAS see's the "responder" variable as 'multinomial', ie it has more than two responses for some reason. Run a PROC FREQ and check the results.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc freq data=model;
table responder / missing;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/223143"&gt;@yahoo0806&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;Hi all,&lt;/P&gt;
&lt;P&gt;I recent run into a problem when I use proc glimmix, hope someone can help.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;the data I have is a cross over data, each subject can have treatment sequence as AB or BA, my output is a binary responder: depending on if the change from baseline (CHG) value is &amp;gt;= 3 or not. For example, if the CHG value is &amp;gt;= 3 then responder variable = Y otherwise response = N.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The response status (responder varaible) will be analyzed using a generalized linear mixed model for binomial data (or mixed effects logistic regression model) with the logit of the probability of response as the dependent variable, treatment and period as fixed effects and subject as random effect. The Kenward-Rogers adjustment will be used to compute the denominator degrees of freedom for the test of the fixed effect. Adaptive Gauss-Hermite quadrature will be used to approximate the marginal log likelihood (SAS procedure GLIMMIX and METHOD=QUAD).&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Below is the model I used:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Proc glimmix data=model METHOD=QUAD;&lt;BR /&gt;class&amp;nbsp;subject period treatment;&lt;BR /&gt;model&amp;nbsp;responder = period &lt;SPAN&gt;treatment&lt;/SPAN&gt;/ddfm=KENWARDROGER solution link=logit;&lt;BR /&gt;random &lt;SPAN&gt;subject&lt;/SPAN&gt;;&lt;BR /&gt;lsmeans &lt;SPAN&gt;treatment&lt;/SPAN&gt; / cl ilink;&lt;BR /&gt;run;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The problem I run into is SAS gives me the following error message:&lt;/P&gt;
&lt;P&gt;ERROR: For the multinomial distribution only the following links are possible: CUMLOGIT, CUMPROBIT, CUMLOGLOG, CUMCLL, GLOGIT.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Do you know why? and can you please let me know how I should fix my model?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Many thanks in advance!&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 23 Aug 2018 18:47:18 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Problem-with-my-glimmix-model/m-p/489367#M25430</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2018-08-23T18:47:18Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with my glimmix model</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Problem-with-my-glimmix-model/m-p/489371#M25431</link>
      <description>&lt;P&gt;I did the proc freq as you suggested, but I do see only two results: Y and N.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 23 Aug 2018 19:07:54 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Problem-with-my-glimmix-model/m-p/489371#M25431</guid>
      <dc:creator>yahoo0806</dc:creator>
      <dc:date>2018-08-23T19:07:54Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with my glimmix model</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Problem-with-my-glimmix-model/m-p/489394#M25433</link>
      <description>&lt;P&gt;Do you have a format applied to the variable?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/223143"&gt;@yahoo0806&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;I did the proc freq as you suggested, but I do see only two results: Y and N.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 23 Aug 2018 20:13:28 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Problem-with-my-glimmix-model/m-p/489394#M25433</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2018-08-23T20:13:28Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with my glimmix model</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Problem-with-my-glimmix-model/m-p/489396#M25434</link>
      <description>&lt;P&gt;I don't think so, here is how I created the responder variable:&lt;/P&gt;&lt;P&gt;data model; set data;&lt;BR /&gt;if CHG &amp;gt;=3 then &lt;SPAN&gt;responder&lt;/SPAN&gt; = "Y"; else &lt;SPAN&gt;responder&lt;/SPAN&gt; = "N";&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 23 Aug 2018 20:15:38 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Problem-with-my-glimmix-model/m-p/489396#M25434</guid>
      <dc:creator>yahoo0806</dc:creator>
      <dc:date>2018-08-23T20:15:38Z</dc:date>
    </item>
  </channel>
</rss>

