<?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 how to adjust for clustered variable when doing multinomial regression? in Statistical Procedures</title>
    <link>https://communities.sas.com/t5/Statistical-Procedures/how-to-adjust-for-clustered-variable-when-doing-multinomial/m-p/677191#M32497</link>
    <description>&lt;P&gt;I am using &lt;STRONG&gt;&lt;EM&gt;proc logistic&lt;/EM&gt;&lt;/STRONG&gt; to analyze the association between blood pressure and CVD (categorical outcomes: heart disease only, stroke only, heart and stroke).&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I want to consider the cluster variable, like hospital (data from 3 hospitals). In &lt;STRONG&gt;&lt;EM&gt;proc genmod,&lt;/EM&gt;&lt;/STRONG&gt; it only supports the ordinal multinomial model but not categorical multinomial.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;how to adjust for the clustered variable when doing multinomial regression with categorical dependent variables?&lt;/P&gt;</description>
    <pubDate>Mon, 17 Aug 2020 12:27:08 GMT</pubDate>
    <dc:creator>Jie111</dc:creator>
    <dc:date>2020-08-17T12:27:08Z</dc:date>
    <item>
      <title>how to adjust for clustered variable when doing multinomial regression?</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/how-to-adjust-for-clustered-variable-when-doing-multinomial/m-p/677191#M32497</link>
      <description>&lt;P&gt;I am using &lt;STRONG&gt;&lt;EM&gt;proc logistic&lt;/EM&gt;&lt;/STRONG&gt; to analyze the association between blood pressure and CVD (categorical outcomes: heart disease only, stroke only, heart and stroke).&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I want to consider the cluster variable, like hospital (data from 3 hospitals). In &lt;STRONG&gt;&lt;EM&gt;proc genmod,&lt;/EM&gt;&lt;/STRONG&gt; it only supports the ordinal multinomial model but not categorical multinomial.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;how to adjust for the clustered variable when doing multinomial regression with categorical dependent variables?&lt;/P&gt;</description>
      <pubDate>Mon, 17 Aug 2020 12:27:08 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/how-to-adjust-for-clustered-variable-when-doing-multinomial/m-p/677191#M32497</guid>
      <dc:creator>Jie111</dc:creator>
      <dc:date>2020-08-17T12:27:08Z</dc:date>
    </item>
    <item>
      <title>Re: how to adjust for clustered variable when doing multinomial regression?</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/how-to-adjust-for-clustered-variable-when-doing-multinomial/m-p/677196#M32498</link>
      <description>&lt;P&gt;You could add the variable HOSPITAL to the model in PROC LOGISTIC.&lt;/P&gt;</description>
      <pubDate>Mon, 17 Aug 2020 12:31:33 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/how-to-adjust-for-clustered-variable-when-doing-multinomial/m-p/677196#M32498</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2020-08-17T12:31:33Z</dc:date>
    </item>
    <item>
      <title>Re: how to adjust for clustered variable when doing multinomial regression?</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/how-to-adjust-for-clustered-variable-when-doing-multinomial/m-p/677202#M32499</link>
      <description>&lt;P&gt;Thanks for the quick reply.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Sorry, but I did not describe the question correctly. if the clustered variable was family, and we have about 1000 families. it is not possible to adjust it in the logsitc model directly.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;proc logistic data=data descend;
       class  blood_pressure_g(ref="2") / param=ref;
       model inc_multinorminal=blood_pressure_g/ link=glogit;
  run;



proc genmod data=data descend;
      class family blood_pressure_g(ref="2") / param=ref;
       model inc_multinorminal=blood_pressure_g/ dist=MULTINOMIAL link=cumlogit;
            repeated family=alt_pairid / corr=IND covb;
run;&lt;/PRE&gt;</description>
      <pubDate>Mon, 17 Aug 2020 12:38:33 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/how-to-adjust-for-clustered-variable-when-doing-multinomial/m-p/677202#M32499</guid>
      <dc:creator>Jie111</dc:creator>
      <dc:date>2020-08-17T12:38:33Z</dc:date>
    </item>
    <item>
      <title>Re: how to adjust for clustered variable when doing multinomial regression?</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/how-to-adjust-for-clustered-variable-when-doing-multinomial/m-p/677206#M32500</link>
      <description>&lt;P&gt;I don't really have a good answer.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;When you have a categorical variable with one thousand levels, I don't really know of any modeling technique that will do a good job here. There are two reasons for this: potentially small number of data points for most (all?) levels, and that you may run out of memory. Of course, you can still try it and see what results, but I am not optimistic.&lt;/P&gt;</description>
      <pubDate>Mon, 17 Aug 2020 12:43:31 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/how-to-adjust-for-clustered-variable-when-doing-multinomial/m-p/677206#M32500</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2020-08-17T12:43:31Z</dc:date>
    </item>
    <item>
      <title>Re: how to adjust for clustered variable when doing multinomial regression?</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/how-to-adjust-for-clustered-variable-when-doing-multinomial/m-p/677210#M32501</link>
      <description>&lt;P&gt;To me, this sounds like an analysis where PROC GLIMMIX can be applied.&amp;nbsp; It can model nominal multinomial responses, and by treating clustering variables as random effects, should be able to accomplish what you wish to do.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc glimmix data=data descend method=laplace;
      class family blood_pressure_g(ref="2");
       model inc_multinorminal=blood_pressure_g/ dist=MULTINOMIAL link=glogit;
         RANDOM family/subject=alt_pairid ;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;For this, be sure to sort your dataset by alt_pairid (which I assume is numeric).&amp;nbsp; If it is not numeric,&amp;nbsp; then it should be added to the CLASS statement.&amp;nbsp; &amp;nbsp;I removed the global param=ref, as it is not supported in GLIMMIX, which uses GLM parameterization.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;SteveDenham&lt;/P&gt;</description>
      <pubDate>Mon, 17 Aug 2020 12:55:59 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/how-to-adjust-for-clustered-variable-when-doing-multinomial/m-p/677210#M32501</guid>
      <dc:creator>SteveDenham</dc:creator>
      <dc:date>2020-08-17T12:55:59Z</dc:date>
    </item>
    <item>
      <title>Re: how to adjust for clustered variable when doing multinomial regression?</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/how-to-adjust-for-clustered-variable-when-doing-multinomial/m-p/677220#M32502</link>
      <description>&lt;P&gt;Thanks for the kind reply.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I tried code like below. but&amp;nbsp;&lt;EM&gt;ERROR: The SAS System stopped processing this step because of insufficient memory.&lt;/EM&gt;&lt;/P&gt;
&lt;P&gt;Maybe I have too many levels of the family...&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;proc glimmix data=data  method=laplace;
      class family blood_pressure_g(ref="2");
       model inc_multinorminal=blood_pressure_g/ dist=MULTINOMIAL link=glogit;
         RANDOM blood_pressure_g/subject=family group=inc_multinorminal;
run;&lt;/PRE&gt;</description>
      <pubDate>Mon, 17 Aug 2020 13:20:29 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/how-to-adjust-for-clustered-variable-when-doing-multinomial/m-p/677220#M32502</guid>
      <dc:creator>Jie111</dc:creator>
      <dc:date>2020-08-17T13:20:29Z</dc:date>
    </item>
    <item>
      <title>Re: how to adjust for clustered variable when doing multinomial regression?</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/how-to-adjust-for-clustered-variable-when-doing-multinomial/m-p/677222#M32503</link>
      <description>&lt;P&gt;Yes, this is a major issue when trying to model a categorical variable with 1000 levels.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You could try to somehow cluster the families together, so instead of 1000 families, you have 25 clusters ... but I don't have any ideas off the top of my head how to do this.&lt;/P&gt;</description>
      <pubDate>Mon, 17 Aug 2020 13:43:32 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/how-to-adjust-for-clustered-variable-when-doing-multinomial/m-p/677222#M32503</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2020-08-17T13:43:32Z</dc:date>
    </item>
    <item>
      <title>Re: how to adjust for clustered variable when doing multinomial regression?</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/how-to-adjust-for-clustered-variable-when-doing-multinomial/m-p/677226#M32504</link>
      <description>Thanks a lot, Paige.&lt;BR /&gt;I would try it.</description>
      <pubDate>Mon, 17 Aug 2020 13:51:20 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/how-to-adjust-for-clustered-variable-when-doing-multinomial/m-p/677226#M32504</guid>
      <dc:creator>Jie111</dc:creator>
      <dc:date>2020-08-17T13:51:20Z</dc:date>
    </item>
    <item>
      <title>Re: how to adjust for clustered variable when doing multinomial regression?</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/how-to-adjust-for-clustered-variable-when-doing-multinomial/m-p/677308#M32508</link>
      <description>&lt;P&gt;This line is causing a lot of the problem:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;  RANDOM blood_pressure_g/subject=family group=inc_multinorminal;&lt;/PRE&gt;
&lt;P&gt;The way this reads, blood pressure is both a fixed and a random effect, and the random effect has &amp;gt;1000 levels, which are further subdivided by the number of levels in inc_multinomial, which is your dependent variable.&amp;nbsp; Unless I am missing something, you have clustering by family.&amp;nbsp; You may have heterogeneity of variance by blood pressure group, so the possible RANDOM statements would be:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;  RANDOM intercept/subject=family;

/*OR*/

  RANDOM intercept/subject=family group=blood_pressure_g;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;The first (random intercept model) should not stress GLIMMIX - there is a single estimate, with as many BLUPs from that as you have subjects.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Please try that and see how the memory situation works.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;SteveDenham&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 17 Aug 2020 17:16:31 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/how-to-adjust-for-clustered-variable-when-doing-multinomial/m-p/677308#M32508</guid>
      <dc:creator>SteveDenham</dc:creator>
      <dc:date>2020-08-17T17:16:31Z</dc:date>
    </item>
    <item>
      <title>Re: how to adjust for clustered variable when doing multinomial regression?</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/how-to-adjust-for-clustered-variable-when-doing-multinomial/m-p/677417#M32519</link>
      <description>&lt;P&gt;&lt;SPAN&gt;Hi SteveDenham, thanks for the help.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;I changed the code as follows&lt;/SPAN&gt;&lt;/P&gt;
&lt;PRE&gt;proc glimmix data=data   method=laplace;
         class   family    blood_pressure_g(ref="2");
        model inc_multinorminal (ref='0')=blood_pressure_g/ dist=MULTINOMIAL link=glogit;
          RANDOM intercept/subject=family   group=blood_pressure_g;
 run;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Then SAS reminds me that&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;ERROR: Nominal models require that the response variable is a group effect on RANDOM statements.&lt;BR /&gt;You need to add 'GROUP=inc_multinorminal'.&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;so I changed the Group, as follows:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc glimmix data=data   method=laplace;
         class   family    blood_pressure_g(ref="2");
        model inc_multinorminal (ref='0')=blood_pressure_g/ dist=MULTINOMIAL link=glogit;
          RANDOM intercept/subject=family   group=inc_multinorminal;
 run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Still,&amp;nbsp;ERROR: The SAS System stopped processing this step because of insufficient memory.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 18 Aug 2020 07:59:32 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/how-to-adjust-for-clustered-variable-when-doing-multinomial/m-p/677417#M32519</guid>
      <dc:creator>Jie111</dc:creator>
      <dc:date>2020-08-18T07:59:32Z</dc:date>
    </item>
    <item>
      <title>Re: how to adjust for clustered variable when doing multinomial regression?</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/how-to-adjust-for-clustered-variable-when-doing-multinomial/m-p/677458#M32524</link>
      <description>&lt;P&gt;Digging around, I came up with one possibility, and one question for the wider audience.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The possibility would be to bootstrap your results, by using several subsets of the subject variable family.&amp;nbsp; You could use PROC SURVEYSELECT to sample with replacement from all families, then fit each of these subsets separately.&amp;nbsp; The parameter estimates and standard errors for the full group could then be obtained by model averaging (either straightforward or using PROC MIANALYZE in a clever way).&amp;nbsp; The key would be finding out what size the subsets need to be to avert the memory issue.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The question for the wider audience is this: It is not obvious to me that you must include group=&amp;lt;response_variable&amp;gt; in the RANDOM statement. The error message points out that it must be included&amp;nbsp; Could someone point me to where this is covered in the documentation (&amp;nbsp;&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13633"&gt;@StatDave&lt;/a&gt;&amp;nbsp;,&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13684"&gt;@Rick_SAS&lt;/a&gt;) ?&amp;nbsp; &amp;nbsp; Thanks to anyone that has info on this.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;SteveDenham&lt;/P&gt;</description>
      <pubDate>Tue, 18 Aug 2020 12:47:29 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/how-to-adjust-for-clustered-variable-when-doing-multinomial/m-p/677458#M32524</guid>
      <dc:creator>SteveDenham</dc:creator>
      <dc:date>2020-08-18T12:47:29Z</dc:date>
    </item>
    <item>
      <title>Re: how to adjust for clustered variable when doing multinomial regression?</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/how-to-adjust-for-clustered-variable-when-doing-multinomial/m-p/677473#M32525</link>
      <description>&lt;P&gt;While PROC GENMOD does not support nominal multinomial logistic regression with clustered data, the newer PROC GEE does. You can specify DIST=MULT and LINK=GLOGIT and then use the REPEATED statement. For this and other types of logistic models that are available, see&lt;A href="http://support.sas.com/kb/22871" target="_self"&gt; this note&lt;/A&gt;.&lt;/P&gt;</description>
      <pubDate>Tue, 18 Aug 2020 13:41:22 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/how-to-adjust-for-clustered-variable-when-doing-multinomial/m-p/677473#M32525</guid>
      <dc:creator>StatDave</dc:creator>
      <dc:date>2020-08-18T13:41:22Z</dc:date>
    </item>
    <item>
      <title>Re: how to adjust for clustered variable when doing multinomial regression?</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/how-to-adjust-for-clustered-variable-when-doing-multinomial/m-p/677484#M32528</link>
      <description>&lt;P&gt;This really looks like a great alternative,&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13633"&gt;@StatDave&lt;/a&gt;&amp;nbsp;.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The example&amp;nbsp;&lt;A href="https://documentation.sas.com/?docsetId=statug&amp;amp;docsetTarget=statug_gee_examples06.htm%3Flocale&amp;amp;docsetVersion=14.2&amp;amp;locale=en" target="_self"&gt;here&lt;/A&gt;&amp;nbsp; looks directly applicable to this analysis.&amp;nbsp; Here is the code I would consider:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc gee data=data descend;
      class family blood_pressure_g ;
       model inc_multinorminal=blood_pressure_g/ dist=MULTINOMIAL link=glogit;
            repeated subject=family / within=altpairid;;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;You may need to sort the data by family and altpairid to get this to work.&amp;nbsp; Also, I don't know if altpairid is numeric so that it could be used in the within= option without including it in the CLASS statement. Also, it appears that PROC GEE only uses a GLM parameterization, and doesn't appear to support the ref= option in the CLASS statement, so interpretation will have to be made carefully.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;SteveDenham&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 18 Aug 2020 14:10:20 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/how-to-adjust-for-clustered-variable-when-doing-multinomial/m-p/677484#M32528</guid>
      <dc:creator>SteveDenham</dc:creator>
      <dc:date>2020-08-18T14:10:20Z</dc:date>
    </item>
    <item>
      <title>Re: how to adjust for clustered variable when doing multinomial regression?</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/how-to-adjust-for-clustered-variable-when-doing-multinomial/m-p/677514#M32539</link>
      <description>For both GENMOD and GEE:&lt;BR /&gt; - The data do not need to be sorted by the SUBJECT= variable. &lt;BR /&gt; - Any variable in the SUBJECT= or WITHIN= option must be specified in the CLASS statement.</description>
      <pubDate>Tue, 18 Aug 2020 15:03:55 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/how-to-adjust-for-clustered-variable-when-doing-multinomial/m-p/677514#M32539</guid>
      <dc:creator>StatDave</dc:creator>
      <dc:date>2020-08-18T15:03:55Z</dc:date>
    </item>
    <item>
      <title>Re: how to adjust for clustered variable when doing multinomial regression?</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/how-to-adjust-for-clustered-variable-when-doing-multinomial/m-p/677706#M32558</link>
      <description>&lt;P&gt;Thanks a lot for your help,&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/15363"&gt;@SteveDenham&lt;/a&gt;&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13633"&gt;@StatDave&lt;/a&gt;&amp;nbsp;.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;It seems that proc gee could help to deal with the question.&lt;/P&gt;
&lt;P&gt;Unfortunately, my SAS reminds me that&lt;EM&gt; procedure GEE not found.&lt;/EM&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I would try it and feedback here when the Proc GEE is available.&lt;span class="lia-unicode-emoji" title=":grinning_face:"&gt;😀&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 19 Aug 2020 06:32:58 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/how-to-adjust-for-clustered-variable-when-doing-multinomial/m-p/677706#M32558</guid>
      <dc:creator>Jie111</dc:creator>
      <dc:date>2020-08-19T06:32:58Z</dc:date>
    </item>
    <item>
      <title>Re: how to adjust for clustered variable when doing multinomial regression?</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/how-to-adjust-for-clustered-variable-when-doing-multinomial/m-p/677782#M32562</link>
      <description>&lt;P&gt;You just need to upgrade to a recent SAS release. As indicated &lt;A href="http://support.sas.com/kb/53867" target="_self"&gt;here&lt;/A&gt;, PROC GEE has been available since SAS 9.4 TS1M2.&lt;/P&gt;</description>
      <pubDate>Wed, 19 Aug 2020 13:11:52 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/how-to-adjust-for-clustered-variable-when-doing-multinomial/m-p/677782#M32562</guid>
      <dc:creator>StatDave</dc:creator>
      <dc:date>2020-08-19T13:11:52Z</dc:date>
    </item>
  </channel>
</rss>

