<?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 Reference group in SAS Procedures</title>
    <link>https://communities.sas.com/t5/SAS-Procedures/Gee-Reference-group/m-p/588338#M75905</link>
    <description>&lt;P&gt;Thank you for your reply.&amp;nbsp;&lt;/P&gt;&lt;P&gt;I ran the exact model in my SAS and got the following in my results:&amp;nbsp;&lt;STRONG&gt;&lt;SPAN style="text-align: left; color: #333333; text-transform: none; text-indent: 0px; letter-spacing: normal; font-family: 'HelevticaNeue-light','Helvetica Neue',Helvetica,Arial,sans-serif; font-size: 14px; font-style: normal; font-variant: normal; text-decoration: none; word-spacing: 0px; display: inline !important; white-space: normal; cursor: text; orphans: 2; float: none; -webkit-text-stroke-width: 0px; background-color: #ffffff;"&gt;Logits modeled use '1' as the reference category.&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="display: inline !important; float: none; background-color: #ffffff; color: #333333; cursor: text; font-family: 'HelevticaNeue-light','Helvetica Neue',Helvetica,Arial,sans-serif; font-size: 14px; font-style: normal; font-variant: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: left; text-decoration: none; text-indent: 0px; text-transform: none; -webkit-text-stroke-width: 0px; white-space: normal; word-spacing: 0px;"&gt;The Parameter Estimates were given for ygroups 1 and 2.&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;It seems, that as stated below, there is a bug in SAS, as I am using SAS version 14.1.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks Again!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Alexis&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Thu, 12 Sep 2019 18:21:37 GMT</pubDate>
    <dc:creator>alexisn1</dc:creator>
    <dc:date>2019-09-12T18:21:37Z</dc:date>
    <item>
      <title>Gee Reference group</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Gee-Reference-group/m-p/548220#M74428</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am trying to run a Proc gee for a multinomial distribution, with a repeated statement (each id has repeated measures over visits).&lt;/P&gt;&lt;P&gt;This is the code that I am using:&lt;/P&gt;&lt;P&gt;&lt;FONT&gt;;&lt;BR /&gt;proc gee data=dataset;&lt;BR /&gt;&amp;nbsp;class id visit ygroup;&lt;BR /&gt;&amp;nbsp;model ygroup= x/dist=multinomial link=glogit;&lt;BR /&gt;&amp;nbsp;repeated subject=id/within=visit;&lt;BR /&gt;run;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;T&lt;FONT&gt;he results state that "Logits modeled use '1' as the reference category.". However, looking at the Parameter Estimates for Response Model table, I am getting an intercept and estimates for groups 1 and 2 (as if it is using group '3' as the reference category).&amp;nbsp;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT&gt;Any ideas of why this is happening and how to fix it?&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT&gt;Also, I would like to use group '2' as a reference. Any ideas how to change that?&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT&gt;Thanks!&lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 03 Apr 2019 14:16:25 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Gee-Reference-group/m-p/548220#M74428</guid>
      <dc:creator>alexisn1</dc:creator>
      <dc:date>2019-04-03T14:16:25Z</dc:date>
    </item>
    <item>
      <title>Re: Gee Reference group</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Gee-Reference-group/m-p/587505#M75876</link>
      <description>&lt;P&gt;What version of SAS are you running? In SAS v940m6, I see the message&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp;Logits modeled use '3' as the reference category&lt;/P&gt;
&lt;P&gt;not '1' as you report.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;So that we can use the same data, I will &lt;A href="https://go.documentation.sas.com/?docsetId=statug&amp;amp;docsetTarget=statug_gee_examples05.htm&amp;amp;docsetVersion=15.1&amp;amp;locale=en" target="_self"&gt;define the Arthritis data set in the PROC GEE examples.&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;The following statements convert the data to look like the data you are using:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data Have;
set Arthritis;
where Rating&amp;lt;=3;
rename Age=x Rating=ygroup;
run;

proc gee data=have;
   class ID Visit;
   model ygroup = x / dist=multinomial link=glogit;
   repeated subject=ID / within=Visit;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Please tell us what reference group is reported for these data.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;As to your second question, the response variable is assumed to be ordinal, so it's not clear to me that you should be changing the order. If you insist, you can recode the data or &lt;A href="https://blogs.sas.com/content/iml/2019/06/10/5-reasons-to-use-proc-format-to-recode-variables-in-sas.html" target="_self"&gt;use a custom format to recode the data.&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 10 Sep 2019 13:24:37 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Gee-Reference-group/m-p/587505#M75876</guid>
      <dc:creator>Rick_SAS</dc:creator>
      <dc:date>2019-09-10T13:24:37Z</dc:date>
    </item>
    <item>
      <title>Re: Gee Reference group</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Gee-Reference-group/m-p/587984#M75888</link>
      <description>&lt;P&gt;use proc genmod and specify "param=ref ref='2'" in the class statement?&lt;/P&gt;</description>
      <pubDate>Wed, 11 Sep 2019 18:26:06 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Gee-Reference-group/m-p/587984#M75888</guid>
      <dc:creator>pau13rown</dc:creator>
      <dc:date>2019-09-11T18:26:06Z</dc:date>
    </item>
    <item>
      <title>Re: Gee Reference group</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Gee-Reference-group/m-p/588335#M75904</link>
      <description>&lt;P&gt;You might want to follow up with&amp;nbsp;&lt;A href="https://support.sas.com/en/technical-support.html#contact-technical-support" target="_self"&gt;Technical Support at SAS&lt;/A&gt;&amp;nbsp;regarding this issue. If I recall this was a bug in SAS 9.4M3 (SAS/STAT 14.1). The information in the Parameter Estimates table is correct, there was an error in the response profile message and the REF= option as a response variable option was not supported. These issues were fixed starting in SAS 9.4M4 (SAS/STAT 14.2).&lt;/P&gt;</description>
      <pubDate>Thu, 12 Sep 2019 18:10:09 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Gee-Reference-group/m-p/588335#M75904</guid>
      <dc:creator>MichaelL_SAS</dc:creator>
      <dc:date>2019-09-12T18:10:09Z</dc:date>
    </item>
    <item>
      <title>Re: Gee Reference group</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Gee-Reference-group/m-p/588338#M75905</link>
      <description>&lt;P&gt;Thank you for your reply.&amp;nbsp;&lt;/P&gt;&lt;P&gt;I ran the exact model in my SAS and got the following in my results:&amp;nbsp;&lt;STRONG&gt;&lt;SPAN style="text-align: left; color: #333333; text-transform: none; text-indent: 0px; letter-spacing: normal; font-family: 'HelevticaNeue-light','Helvetica Neue',Helvetica,Arial,sans-serif; font-size: 14px; font-style: normal; font-variant: normal; text-decoration: none; word-spacing: 0px; display: inline !important; white-space: normal; cursor: text; orphans: 2; float: none; -webkit-text-stroke-width: 0px; background-color: #ffffff;"&gt;Logits modeled use '1' as the reference category.&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="display: inline !important; float: none; background-color: #ffffff; color: #333333; cursor: text; font-family: 'HelevticaNeue-light','Helvetica Neue',Helvetica,Arial,sans-serif; font-size: 14px; font-style: normal; font-variant: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: left; text-decoration: none; text-indent: 0px; text-transform: none; -webkit-text-stroke-width: 0px; white-space: normal; word-spacing: 0px;"&gt;The Parameter Estimates were given for ygroups 1 and 2.&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;It seems, that as stated below, there is a bug in SAS, as I am using SAS version 14.1.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks Again!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Alexis&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 12 Sep 2019 18:21:37 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Gee-Reference-group/m-p/588338#M75905</guid>
      <dc:creator>alexisn1</dc:creator>
      <dc:date>2019-09-12T18:21:37Z</dc:date>
    </item>
    <item>
      <title>Re: Gee Reference group</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Gee-Reference-group/m-p/588339#M75906</link>
      <description>&lt;P&gt;I am using version SAS 14.1, thus it may actually be a bug in my SAS.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Alexis&lt;/P&gt;</description>
      <pubDate>Thu, 12 Sep 2019 18:22:34 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Gee-Reference-group/m-p/588339#M75906</guid>
      <dc:creator>alexisn1</dc:creator>
      <dc:date>2019-09-12T18:22:34Z</dc:date>
    </item>
  </channel>
</rss>

