<?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: Estimate statement in proc logistic for multinomial outcome in Statistical Procedures</title>
    <link>https://communities.sas.com/t5/Statistical-Procedures/Estimate-statement-in-proc-logistic-for-multinomial-outcome/m-p/374726#M19638</link>
    <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/141588"&gt;@useSAS&lt;/a&gt; wrote:&lt;BR /&gt;
&lt;P&gt;I have some trouble in using estimate statement in PROC logistic for multinomial outcome. Is there any example for this situation ?&lt;/P&gt;
&lt;P&gt;Thanks&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Please post your question directly in the forum, not as an attachment, as many users will not open them.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Additionally, remove your Site Number from your post.&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Mon, 10 Jul 2017 22:03:07 GMT</pubDate>
    <dc:creator>Reeza</dc:creator>
    <dc:date>2017-07-10T22:03:07Z</dc:date>
    <item>
      <title>Estimate statement in proc logistic for multinomial outcome</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Estimate-statement-in-proc-logistic-for-multinomial-outcome/m-p/374723#M19637</link>
      <description>&lt;P&gt;I have some trouble in using estimate statement in PROC logistic for multinomial outcome. Is there any example for this situation ?&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 10 Jul 2017 21:44:14 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Estimate-statement-in-proc-logistic-for-multinomial-outcome/m-p/374723#M19637</guid>
      <dc:creator>useSAS</dc:creator>
      <dc:date>2017-07-10T21:44:14Z</dc:date>
    </item>
    <item>
      <title>Re: Estimate statement in proc logistic for multinomial outcome</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Estimate-statement-in-proc-logistic-for-multinomial-outcome/m-p/374726#M19638</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/141588"&gt;@useSAS&lt;/a&gt; wrote:&lt;BR /&gt;
&lt;P&gt;I have some trouble in using estimate statement in PROC logistic for multinomial outcome. Is there any example for this situation ?&lt;/P&gt;
&lt;P&gt;Thanks&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Please post your question directly in the forum, not as an attachment, as many users will not open them.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Additionally, remove your Site Number from your post.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 10 Jul 2017 22:03:07 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Estimate-statement-in-proc-logistic-for-multinomial-outcome/m-p/374726#M19638</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2017-07-10T22:03:07Z</dc:date>
    </item>
    <item>
      <title>Re: Estimate statement in proc logistic for multinomial outcome</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Estimate-statement-in-proc-logistic-for-multinomial-outcome/m-p/375078#M19661</link>
      <description>&lt;P&gt;This cannot be done with the ESTIMATE statement. &amp;nbsp;But you can use the general &lt;A href="http://support.sas.com/kb/58775" target="_self"&gt;NLEstimate macro&lt;/A&gt; to test any linear or nonlinear combination of model parameters. &lt;A href="http://support.sas.com/kb/57798" target="_self"&gt;This note&lt;/A&gt; shows one example of using the macro with a multinomial model. &amp;nbsp;Links to other examples of using the macro are given in the Results tab of the macro description. For your example, you just want to contrast the 3rd and 4th parameters in the model. &amp;nbsp;That is, you want to test the hypothesis that the difference in those parameters is zero. &amp;nbsp;Here is a similar example using the Crops data in the example titled "Scoring Data Sets" in the LOGISTIC documentation. &amp;nbsp;Include a STORE statement to save the fitted model information in an item store named LOG. &amp;nbsp;After submitting the macro definition code to define the macro (see the Usage section of the macro description), call the macro and specify the function to estimate using the parameter names that the macro assigns: B_p1, B_p2, ... .&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;proc logistic data=crops;&lt;BR /&gt;where crop in ('Corn','Soybeans','Cotton');&lt;BR /&gt;model crop = x1 / link=glogit;&lt;BR /&gt;test x1_Corn=x1_Cotton; &lt;BR /&gt;store log;&lt;BR /&gt;run;&lt;BR /&gt;%NLEstimate(instore=log, label=Diff, f=B_p3-B_p4, df=15)&lt;/P&gt;</description>
      <pubDate>Tue, 11 Jul 2017 18:38:55 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Estimate-statement-in-proc-logistic-for-multinomial-outcome/m-p/375078#M19661</guid>
      <dc:creator>StatDave</dc:creator>
      <dc:date>2017-07-11T18:38:55Z</dc:date>
    </item>
    <item>
      <title>Re: Estimate statement in proc logistic for multinomial outcome</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Estimate-statement-in-proc-logistic-for-multinomial-outcome/m-p/375551#M19681</link>
      <description>Thank you !</description>
      <pubDate>Thu, 13 Jul 2017 01:33:54 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Estimate-statement-in-proc-logistic-for-multinomial-outcome/m-p/375551#M19681</guid>
      <dc:creator>useSAS</dc:creator>
      <dc:date>2017-07-13T01:33:54Z</dc:date>
    </item>
  </channel>
</rss>

