<?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: Mulinomial logistic regression in Statistical Procedures</title>
    <link>https://communities.sas.com/t5/Statistical-Procedures/Mulinomial-logistic-regression/m-p/894814#M44340</link>
    <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/350945"&gt;@KKIND&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;This syntax error is just due to the missing semicolon (added and highlighted in red below).&lt;/P&gt;
&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/350945"&gt;@KKIND&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;(...)&lt;/P&gt;
&lt;P&gt;249 slice pay1recat*hosp_ur_teach/sliceby(hosp_ur_teach='1') diff oddsratio cl;&lt;BR /&gt;250 slice pay1recat*hosp_ur_teach/sliceby(hosp_ur_teach='2') diff oddsratio cl&lt;FONT size="5" color="#FF0000"&gt;&lt;STRONG&gt;;&lt;/STRONG&gt;&lt;/FONT&gt;&lt;BR /&gt;251 slice pay1recat*hosp_traumarecat/sliceby(pay1recat='3') diff oddsratio cl;&lt;BR /&gt;-----&lt;BR /&gt;22&lt;BR /&gt;76&lt;BR /&gt;ERROR 22-322: Syntax error, expecting one of the following: ;, ADJ, ADJDFE, ADJUST, ADJUSTMENT,&lt;/P&gt;
&lt;P&gt;(...)&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Also, in the future please post logs in a code box (using the &amp;lt;/&amp;gt; button). Then we can see what SAS has underlined to indicate an error. (It's not the line number 251 that is wrong ...)&lt;/P&gt;</description>
    <pubDate>Mon, 18 Sep 2023 15:59:54 GMT</pubDate>
    <dc:creator>FreelanceReinh</dc:creator>
    <dc:date>2023-09-18T15:59:54Z</dc:date>
    <item>
      <title>Mulinomial logistic regression</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Mulinomial-logistic-regression/m-p/894723#M44333</link>
      <description>&lt;P&gt;Code&lt;/P&gt;
&lt;P&gt;proc logistic data = NEDS.neds_2016_pneumonia_recat;&lt;BR /&gt;class died_visit (ref = "0") pay1recat (ref = "3") hosp_controlrecat (ref = "4") hosp_urcat4recat (ref = "1") hosp_ur_teach (ref = "0") hosp_traumarecat (ref = "0") / param = ref;&lt;BR /&gt;model died_visit = pay1recat hosp_controlrecat hosp_urcat4recat hosp_ur_teach hosp_traumarecat / link = glogit;&lt;BR /&gt;slice pay1recat*hosp_controlrecat/sliceby(pay1recat='3') diff oddsratio cl;&lt;BR /&gt;slice pay1recat*hosp_controlrecat/sliceby(pay1recat='2') diff oddsratio cl;&lt;BR /&gt;slice pay1recat*hosp_controlrecat/sliceby(pay1recat='1') diff oddsratio cl;&lt;BR /&gt;slice pay1recat*hosp_controlrecat/sliceby(hosp_controlrecat='1') diff oddsratio cl;&lt;BR /&gt;slice pay1recat*hosp_controlrecat/sliceby(hosp_controlrecat='2') diff oddsratio cl;&lt;BR /&gt;slice pay1recat*hosp_controlrecat/sliceby(hosp_controlrecat='3') diff oddsratio cl;&lt;BR /&gt;slice pay1recat*hosp_controlrecat/sliceby(hosp_controlrecat='4') diff oddsratio cl;&lt;BR /&gt;slice pay1recat*hosp_urcat4recat/sliceby(pay1recat='3') diff oddsratio cl;&lt;BR /&gt;slice pay1recat*hosp_urcat4recat/sliceby(pay1recat='2') diff oddsratio cl;&lt;BR /&gt;slice pay1recat*hosp_urcat4recat/sliceby(pay1recat='1') diff oddsratio cl;&lt;BR /&gt;slice pay1recat*hosp_urcat4recat/sliceby(hosp_urcat4recat='1') diff oddsratio cl;&lt;BR /&gt;slice pay1recat*hosp_urcat4recat/sliceby(hosp_urcat4recat='2') diff oddsratio cl;&lt;BR /&gt;slice pay1recat*hosp_ur_teach/sliceby(pay1recat='3') diff oddsratio cl;&lt;BR /&gt;slice pay1recat*hosp_ur_teach/sliceby(pay1recat='2') diff oddsratio cl;&lt;BR /&gt;slice pay1recat*hosp_ur_teach/sliceby(pay1recat='1') diff oddsratio cl;&lt;BR /&gt;slice pay1recat*hosp_ur_teach/sliceby(hosp_ur_teach='0') diff oddsratio cl;&lt;BR /&gt;slice pay1recat*hosp_ur_teach/sliceby(hosp_ur_teach='1') diff oddsratio cl;&lt;BR /&gt;slice pay1recat*hosp_ur_teach/sliceby(hosp_ur_teach='2') diff oddsratio cl&lt;BR /&gt;slice pay1recat*hosp_traumarecat/sliceby(pay1recat='3') diff oddsratio cl;&lt;BR /&gt;slice pay1recat*hosp_traumarecat/sliceby(pay1recat='2') diff oddsratio cl;&lt;BR /&gt;slice pay1recat*hosp_traumarecat/sliceby(pay1recat='1') diff oddsratio cl;&lt;BR /&gt;slice pay1recat*hosp_traumarecat/sliceby(hosp_traumarecat='0') diff oddsratio cl;&lt;BR /&gt;slice pay1recat*hosp_traumarecat/sliceby(hosp_traumarecat='1') diff oddsratio cl;&lt;BR /&gt;slice pay1recat*hosp_traumarecat/sliceby(hosp_traumarecat='2') diff oddsratio cl;&lt;BR /&gt;slice pay1recat*hosp_traumarecat/sliceby(hosp_traumarecat='3') diff oddsratio cl;&lt;BR /&gt;run;&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;ERROR: Effects used in the SLICE statement must have appeared previously in the MODEL statement.&lt;BR /&gt;NOTE: The SAS System stopped processing this step because of errors.&lt;/P&gt;</description>
      <pubDate>Mon, 18 Sep 2023 01:01:41 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Mulinomial-logistic-regression/m-p/894723#M44333</guid>
      <dc:creator>KKIND</dc:creator>
      <dc:date>2023-09-18T01:01:41Z</dc:date>
    </item>
    <item>
      <title>Re: Mulinomial logistic regression</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Mulinomial-logistic-regression/m-p/894760#M44334</link>
      <description>You must specify interact term in your model . Like:&lt;BR /&gt;&lt;BR /&gt;model died_visit = pay1recat hosp_controlrecat hosp_urcat4recat hosp_ur_teach hosp_traumarecat / link = glogit;&lt;BR /&gt;--&amp;gt;&lt;BR /&gt;model died_visit = pay1recat hosp_controlrecat hosp_urcat4recat hosp_ur_teach hosp_traumarecat&lt;BR /&gt;  pay1recat*hosp_controlrecat   pay1recat*hosp_urcat4recat  pay1recat*hosp_ur_teach pay1recat*hosp_traumarecat/ link = glogit;</description>
      <pubDate>Mon, 18 Sep 2023 11:25:04 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Mulinomial-logistic-regression/m-p/894760#M44334</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2023-09-18T11:25:04Z</dc:date>
    </item>
    <item>
      <title>Re: Mulinomial logistic regression</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Mulinomial-logistic-regression/m-p/894805#M44338</link>
      <description>&lt;P&gt;Hello ksharp, thanks! I did assume that would be the case and ran the code again adding the interaction terms but got this error.&lt;/P&gt;
&lt;P&gt;proc logistic data = NEDS.neds_2016_pneumonia_recat;&lt;BR /&gt;231 class died_visit (ref = "0") pay1recat (ref = "3") hosp_controlrecat (ref = "4")&lt;BR /&gt;231! hosp_urcat4recat (ref = "1") hosp_ur_teach (ref = "0") hosp_traumarecat (ref = "0") / param =&lt;BR /&gt;231! ref;&lt;BR /&gt;232 model died_visit = pay1recat hosp_controlrecat pay1recat*hosp_controlrecat hosp_urcat4recat&lt;BR /&gt;232! pay1recat*hosp_urcat4recat hosp_ur_teach pay1recat*hosp_ur_teach hosp_traumarecat&lt;BR /&gt;232! pay1recat*hosp_traumarecat / link = glogit;&lt;BR /&gt;233 slice pay1recat*hosp_controlrecat/sliceby(pay1recat='3') diff oddsratio cl;&lt;BR /&gt;234 slice pay1recat*hosp_controlrecat/sliceby(pay1recat='2') diff oddsratio cl;&lt;BR /&gt;235 slice pay1recat*hosp_controlrecat/sliceby(pay1recat='1') diff oddsratio cl;&lt;BR /&gt;236 slice pay1recat*hosp_controlrecat/sliceby(hosp_controlrecat='1') diff oddsratio cl;&lt;BR /&gt;237 slice pay1recat*hosp_controlrecat/sliceby(hosp_controlrecat='2') diff oddsratio cl;&lt;BR /&gt;238 slice pay1recat*hosp_controlrecat/sliceby(hosp_controlrecat='3') diff oddsratio cl;&lt;BR /&gt;239 slice pay1recat*hosp_controlrecat/sliceby(hosp_controlrecat='4') diff oddsratio cl;&lt;BR /&gt;240 slice pay1recat*hosp_urcat4recat/sliceby(pay1recat='3') diff oddsratio cl;&lt;BR /&gt;241 slice pay1recat*hosp_urcat4recat/sliceby(pay1recat='2') diff oddsratio cl;&lt;BR /&gt;242 slice pay1recat*hosp_urcat4recat/sliceby(pay1recat='1') diff oddsratio cl;&lt;BR /&gt;243 slice pay1recat*hosp_urcat4recat/sliceby(hosp_urcat4recat='1') diff oddsratio cl;&lt;BR /&gt;244 slice pay1recat*hosp_urcat4recat/sliceby(hosp_urcat4recat='2') diff oddsratio cl;&lt;BR /&gt;245 slice pay1recat*hosp_ur_teach/sliceby(pay1recat='3') diff oddsratio cl;&lt;BR /&gt;246 slice pay1recat*hosp_ur_teach/sliceby(pay1recat='2') diff oddsratio cl;&lt;BR /&gt;NOTE: PROCEDURE LOGISTIC used (Total process time):&lt;BR /&gt;real time 0.00 seconds&lt;BR /&gt;cpu time 0.00 seconds&lt;/P&gt;
&lt;P&gt;NOTE: The SAS System stopped processing this step because of errors.&lt;BR /&gt;247 slice pay1recat*hosp_ur_teach/sliceby(pay1recat='1') diff oddsratio cl;&lt;BR /&gt;248 slice pay1recat*hosp_ur_teach/sliceby(hosp_ur_teach='0') diff oddsratio cl;&lt;BR /&gt;249 slice pay1recat*hosp_ur_teach/sliceby(hosp_ur_teach='1') diff oddsratio cl;&lt;BR /&gt;250 slice pay1recat*hosp_ur_teach/sliceby(hosp_ur_teach='2') diff oddsratio cl&lt;BR /&gt;251 slice pay1recat*hosp_traumarecat/sliceby(pay1recat='3') diff oddsratio cl;&lt;BR /&gt;-----&lt;BR /&gt;22&lt;BR /&gt;76&lt;BR /&gt;ERROR 22-322: Syntax error, expecting one of the following: ;, ADJ, ADJDFE, ADJUST, ADJUSTMENT,&lt;BR /&gt;ALPHA, AT, BYLEVEL, CHISQ, CL, CORR, COV, DF, DIFF, DIFFS, E, EPSILON, EST, EXP,&lt;BR /&gt;ILINK, JOINT, LINES, LINESTABLE, MEANS, NOF, NOMEANS, OBSMARGINS, ODDSRATIO,&lt;BR /&gt;ODDSRATIOS, OR, PDIFF, PLOT, PLOTS, SEED, SIMPLE, SINGULAR, SLICEBY, STEPDOWN,&lt;BR /&gt;TDIFF.&lt;BR /&gt;ERROR 76-322: Syntax error, statement will be ignored.&lt;BR /&gt;252 slice pay1recat*hosp_traumarecat/sliceby(pay1recat='2') diff oddsratio cl;&lt;BR /&gt;253 slice pay1recat*hosp_traumarecat/sliceby(pay1recat='1') diff oddsratio cl;&lt;BR /&gt;254 slice pay1recat*hosp_traumarecat/sliceby(hosp_traumarecat='0') diff oddsratio cl;&lt;BR /&gt;255 slice pay1recat*hosp_traumarecat/sliceby(hosp_traumarecat='1') diff oddsratio cl;&lt;BR /&gt;256 slice pay1recat*hosp_traumarecat/sliceby(hosp_traumarecat='2') diff oddsratio cl;&lt;BR /&gt;257 slice pay1recat*hosp_traumarecat/sliceby(hosp_traumarecat='3') diff oddsratio cl;&lt;BR /&gt;258 run;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 18 Sep 2023 15:21:39 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Mulinomial-logistic-regression/m-p/894805#M44338</guid>
      <dc:creator>KKIND</dc:creator>
      <dc:date>2023-09-18T15:21:39Z</dc:date>
    </item>
    <item>
      <title>Re: Mulinomial logistic regression</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Mulinomial-logistic-regression/m-p/894814#M44340</link>
      <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/350945"&gt;@KKIND&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;This syntax error is just due to the missing semicolon (added and highlighted in red below).&lt;/P&gt;
&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/350945"&gt;@KKIND&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;(...)&lt;/P&gt;
&lt;P&gt;249 slice pay1recat*hosp_ur_teach/sliceby(hosp_ur_teach='1') diff oddsratio cl;&lt;BR /&gt;250 slice pay1recat*hosp_ur_teach/sliceby(hosp_ur_teach='2') diff oddsratio cl&lt;FONT size="5" color="#FF0000"&gt;&lt;STRONG&gt;;&lt;/STRONG&gt;&lt;/FONT&gt;&lt;BR /&gt;251 slice pay1recat*hosp_traumarecat/sliceby(pay1recat='3') diff oddsratio cl;&lt;BR /&gt;-----&lt;BR /&gt;22&lt;BR /&gt;76&lt;BR /&gt;ERROR 22-322: Syntax error, expecting one of the following: ;, ADJ, ADJDFE, ADJUST, ADJUSTMENT,&lt;/P&gt;
&lt;P&gt;(...)&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Also, in the future please post logs in a code box (using the &amp;lt;/&amp;gt; button). Then we can see what SAS has underlined to indicate an error. (It's not the line number 251 that is wrong ...)&lt;/P&gt;</description>
      <pubDate>Mon, 18 Sep 2023 15:59:54 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Mulinomial-logistic-regression/m-p/894814#M44340</guid>
      <dc:creator>FreelanceReinh</dc:creator>
      <dc:date>2023-09-18T15:59:54Z</dc:date>
    </item>
    <item>
      <title>Re: Mulinomial logistic regression</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Mulinomial-logistic-regression/m-p/894819#M44342</link>
      <description>Thank you FreelanceReinh! How foolish of me. Got it this time. Thanks again!</description>
      <pubDate>Mon, 18 Sep 2023 16:49:07 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Mulinomial-logistic-regression/m-p/894819#M44342</guid>
      <dc:creator>KKIND</dc:creator>
      <dc:date>2023-09-18T16:49:07Z</dc:date>
    </item>
    <item>
      <title>Re: Mulinomial logistic regression</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Mulinomial-logistic-regression/m-p/894821#M44343</link>
      <description>&lt;P&gt;You're welcome, but you should actually mark Ksharp's reply as the accepted solution, because his advice was most relevant with regard to your initial problem.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;This can be corrected easily (also to help later readers of this thread with the same problem): Just select his post&amp;nbsp;as the solution after clicking&amp;nbsp;"Not the Solution" in the option menu (see icon below) of the current solution.&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="show_option_menu.png" style="width: 155px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/88120i0072C66E082A8DC1/image-size/large?v=v2&amp;amp;px=999" role="button" title="show_option_menu.png" alt="show_option_menu.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 18 Sep 2023 17:07:32 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Mulinomial-logistic-regression/m-p/894821#M44343</guid>
      <dc:creator>FreelanceReinh</dc:creator>
      <dc:date>2023-09-18T17:07:32Z</dc:date>
    </item>
    <item>
      <title>Re: Mulinomial logistic regression</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Mulinomial-logistic-regression/m-p/894822#M44344</link>
      <description>Okay will do. Thanks!</description>
      <pubDate>Mon, 18 Sep 2023 17:08:49 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Mulinomial-logistic-regression/m-p/894822#M44344</guid>
      <dc:creator>KKIND</dc:creator>
      <dc:date>2023-09-18T17:08:49Z</dc:date>
    </item>
    <item>
      <title>Re: Mulinomial logistic regression</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Mulinomial-logistic-regression/m-p/894824#M44345</link>
      <description>Hello ksharp, I am sorry , I did not mark your response as the accepted solution. I don't know how to change that now. Any advice? Thanks!</description>
      <pubDate>Mon, 18 Sep 2023 17:13:37 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Mulinomial-logistic-regression/m-p/894824#M44345</guid>
      <dc:creator>KKIND</dc:creator>
      <dc:date>2023-09-18T17:13:37Z</dc:date>
    </item>
    <item>
      <title>Re: Mulinomial logistic regression</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Mulinomial-logistic-regression/m-p/894825#M44346</link>
      <description>&lt;P&gt;Did my instructions not work for you? This would be important to know as I post them regularly in situations like this.&lt;/P&gt;</description>
      <pubDate>Mon, 18 Sep 2023 17:17:52 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Mulinomial-logistic-regression/m-p/894825#M44346</guid>
      <dc:creator>FreelanceReinh</dc:creator>
      <dc:date>2023-09-18T17:17:52Z</dc:date>
    </item>
    <item>
      <title>Re: Mulinomial logistic regression</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Mulinomial-logistic-regression/m-p/894826#M44347</link>
      <description>The instructions were not clear. Could you please resend it? Thanks!</description>
      <pubDate>Mon, 18 Sep 2023 17:19:56 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Mulinomial-logistic-regression/m-p/894826#M44347</guid>
      <dc:creator>KKIND</dc:creator>
      <dc:date>2023-09-18T17:19:56Z</dc:date>
    </item>
    <item>
      <title>Re: Mulinomial logistic regression</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Mulinomial-logistic-regression/m-p/894829#M44348</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/32733"&gt;@FreelanceReinh&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;You're welcome, but you should actually mark Ksharp's reply as the accepted solution, because his advice was most relevant with regard to your initial problem.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;This can be corrected easily (also to help later readers of this thread with the same problem): Just select his post&amp;nbsp;as the solution after clicking&amp;nbsp;"Not the Solution" in the option menu (see icon below) of the current solution.&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="show_option_menu.png" style="width: 155px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/88120i0072C66E082A8DC1/image-size/large?v=v2&amp;amp;px=999" role="button" title="show_option_menu.png" alt="show_option_menu.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/350945"&gt;@KKIND&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;The instructions were not clear. Could you please resend it? Thanks!&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Okay, let me try to split them into several steps:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Step 1:&lt;/STRONG&gt; Open the option menu of the incorrectly selected solution by clicking the 3-horizontal-bars icon shown in the little screenshot above.&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Step 2:&lt;/STRONG&gt; Select&amp;nbsp;"Not the Solution" from that menu. As a result, my post should no longer be highlighted in green. Also, Ksharp's post should then have a button "Accept as solution" or similar.&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Step 3:&lt;/STRONG&gt; Click that button at Ksharp's post to accept it as the solution.&lt;/P&gt;</description>
      <pubDate>Mon, 18 Sep 2023 17:32:46 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Mulinomial-logistic-regression/m-p/894829#M44348</guid>
      <dc:creator>FreelanceReinh</dc:creator>
      <dc:date>2023-09-18T17:32:46Z</dc:date>
    </item>
    <item>
      <title>Re: Mulinomial logistic regression</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Mulinomial-logistic-regression/m-p/894830#M44349</link>
      <description>Done! Thanks FreelanceReinh!</description>
      <pubDate>Mon, 18 Sep 2023 17:36:38 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Mulinomial-logistic-regression/m-p/894830#M44349</guid>
      <dc:creator>KKIND</dc:creator>
      <dc:date>2023-09-18T17:36:38Z</dc:date>
    </item>
  </channel>
</rss>

